| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//tools/grit/grit_rule.gni") | 5 import("//tools/grit/grit_rule.gni") |
| 6 | 6 |
| 7 group("test_support") { | 7 group("test_support") { |
| 8 deps = [ | 8 deps = [ |
| 9 "//sky/engine/web:test_support", | 9 "//sky/engine/web:test_support", |
| 10 ] | 10 ] |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 ] | 77 ] |
| 78 } | 78 } |
| 79 | 79 |
| 80 source_set("web_headers") { | 80 source_set("web_headers") { |
| 81 public = [ | 81 public = [ |
| 82 "web/Sky.h", | 82 "web/Sky.h", |
| 83 "web/WebBeginFrameArgs.h", | 83 "web/WebBeginFrameArgs.h", |
| 84 "web/WebCache.h", | 84 "web/WebCache.h", |
| 85 "web/WebCachedURLRequest.h", | 85 "web/WebCachedURLRequest.h", |
| 86 "web/WebCompositionUnderline.h", | 86 "web/WebCompositionUnderline.h", |
| 87 "web/WebConsoleMessage.h", | |
| 88 "web/WebDocument.h", | 87 "web/WebDocument.h", |
| 89 "web/WebElement.h", | 88 "web/WebElement.h", |
| 90 "web/WebExceptionCode.h", | 89 "web/WebExceptionCode.h", |
| 91 "web/WebFont.h", | 90 "web/WebFont.h", |
| 92 "web/WebFontDescription.h", | 91 "web/WebFontDescription.h", |
| 93 "web/WebFrame.h", | 92 "web/WebFrame.h", |
| 94 "web/WebFrameClient.h", | 93 "web/WebFrameClient.h", |
| 95 "web/WebHitTestResult.h", | 94 "web/WebHitTestResult.h", |
| 96 "web/WebLeakDetector.h", | |
| 97 "web/WebLocalFrame.h", | 95 "web/WebLocalFrame.h", |
| 98 "web/WebNavigationPolicy.h", | 96 "web/WebNavigationPolicy.h", |
| 99 "web/WebNavigationType.h", | 97 "web/WebNavigationType.h", |
| 100 "web/WebNavigatorContentUtilsClient.h", | 98 "web/WebNavigatorContentUtilsClient.h", |
| 101 "web/WebNode.h", | 99 "web/WebNode.h", |
| 102 "web/WebPageVisibilityState.h", | 100 "web/WebPageVisibilityState.h", |
| 103 "web/WebRange.h", | 101 "web/WebRange.h", |
| 104 "web/WebRuntimeFeatures.h", | 102 "web/WebRuntimeFeatures.h", |
| 105 "web/WebScriptSource.h", | 103 "web/WebScriptSource.h", |
| 106 "web/WebSettings.h", | 104 "web/WebSettings.h", |
| 107 "web/WebSpellCheckClient.h", | 105 "web/WebSpellCheckClient.h", |
| 108 "web/WebTextAffinity.h", | 106 "web/WebTextAffinity.h", |
| 109 "web/WebTextCheckingCompletion.h", | 107 "web/WebTextCheckingCompletion.h", |
| 110 "web/WebTextCheckingResult.h", | 108 "web/WebTextCheckingResult.h", |
| 111 "web/WebTextCheckingType.h", | 109 "web/WebTextCheckingType.h", |
| 112 "web/WebTextDecorationType.h", | 110 "web/WebTextDecorationType.h", |
| 113 "web/WebTextDirection.h", | 111 "web/WebTextDirection.h", |
| 114 "web/WebTextInputInfo.h", | 112 "web/WebTextInputInfo.h", |
| 115 "web/WebTextInputType.h", | 113 "web/WebTextInputType.h", |
| 116 "web/WebTextRun.h", | 114 "web/WebTextRun.h", |
| 117 "web/WebURLLoaderOptions.h", | 115 "web/WebURLLoaderOptions.h", |
| 118 "web/WebView.h", | 116 "web/WebView.h", |
| 119 "web/WebViewClient.h", | 117 "web/WebViewClient.h", |
| 120 "web/WebWidget.h", | 118 "web/WebWidget.h", |
| 121 "web/linux/WebFontRendering.h", | 119 "web/linux/WebFontRendering.h", |
| 122 ] | 120 ] |
| 123 } | 121 } |
| OLD | NEW |