| 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 "platform/linux/WebFallbackFont.h", | 92 "platform/linux/WebFallbackFont.h", |
| 93 "platform/linux/WebFontInfo.h", | 93 "platform/linux/WebFontInfo.h", |
| 94 "platform/linux/WebFontRenderStyle.h", | 94 "platform/linux/WebFontRenderStyle.h", |
| 95 "platform/linux/WebSandboxSupport.h", | 95 "platform/linux/WebSandboxSupport.h", |
| 96 ] | 96 ] |
| 97 } | 97 } |
| 98 | 98 |
| 99 source_set("web_headers") { | 99 source_set("web_headers") { |
| 100 public = [ | 100 public = [ |
| 101 "web/Sky.h", | 101 "web/Sky.h", |
| 102 "web/WebActiveWheelFlingParameters.h", | |
| 103 "web/WebArrayBufferConverter.h", | |
| 104 "web/WebArrayBufferView.h", | |
| 105 "web/WebBeginFrameArgs.h", | 102 "web/WebBeginFrameArgs.h", |
| 106 "web/WebCache.h", | 103 "web/WebCache.h", |
| 107 "web/WebCachedURLRequest.h", | 104 "web/WebCachedURLRequest.h", |
| 108 "web/WebCompositionUnderline.h", | 105 "web/WebCompositionUnderline.h", |
| 109 "web/WebConsoleMessage.h", | 106 "web/WebConsoleMessage.h", |
| 110 "web/WebContentDetectionResult.h", | |
| 111 "web/WebDocument.h", | 107 "web/WebDocument.h", |
| 112 "web/WebElement.h", | 108 "web/WebElement.h", |
| 113 "web/WebExceptionCode.h", | 109 "web/WebExceptionCode.h", |
| 114 "web/WebFont.h", | 110 "web/WebFont.h", |
| 115 "web/WebFontDescription.h", | 111 "web/WebFontDescription.h", |
| 116 "web/WebFrame.h", | 112 "web/WebFrame.h", |
| 117 "web/WebFrameClient.h", | 113 "web/WebFrameClient.h", |
| 118 "web/WebGlyphCache.h", | |
| 119 "web/WebHitTestResult.h", | 114 "web/WebHitTestResult.h", |
| 120 "web/WebImageCache.h", | |
| 121 "web/WebImageDecoder.h", | |
| 122 "web/WebLeakDetector.h", | 115 "web/WebLeakDetector.h", |
| 123 "web/WebLocalFrame.h", | 116 "web/WebLocalFrame.h", |
| 124 "web/WebMemoryUsageInfo.h", | |
| 125 "web/WebNavigationPolicy.h", | 117 "web/WebNavigationPolicy.h", |
| 126 "web/WebNavigationType.h", | 118 "web/WebNavigationType.h", |
| 127 "web/WebNavigatorContentUtilsClient.h", | 119 "web/WebNavigatorContentUtilsClient.h", |
| 128 "web/WebNode.h", | 120 "web/WebNode.h", |
| 129 "web/WebPageVisibilityState.h", | 121 "web/WebPageVisibilityState.h", |
| 130 "web/WebRange.h", | 122 "web/WebRange.h", |
| 131 "web/WebRuntimeFeatures.h", | 123 "web/WebRuntimeFeatures.h", |
| 132 "web/WebScriptBindings.h", | |
| 133 "web/WebScriptController.h", | |
| 134 "web/WebScriptSource.h", | 124 "web/WebScriptSource.h", |
| 135 "web/WebSettings.h", | 125 "web/WebSettings.h", |
| 136 "web/WebSpellCheckClient.h", | 126 "web/WebSpellCheckClient.h", |
| 137 "web/WebTestingSupport.h", | |
| 138 "web/WebTextAffinity.h", | 127 "web/WebTextAffinity.h", |
| 139 "web/WebTextCheckingCompletion.h", | 128 "web/WebTextCheckingCompletion.h", |
| 140 "web/WebTextCheckingResult.h", | 129 "web/WebTextCheckingResult.h", |
| 141 "web/WebTextCheckingType.h", | 130 "web/WebTextCheckingType.h", |
| 142 "web/WebTextDecorationType.h", | 131 "web/WebTextDecorationType.h", |
| 143 "web/WebTextDirection.h", | 132 "web/WebTextDirection.h", |
| 144 "web/WebTextInputInfo.h", | 133 "web/WebTextInputInfo.h", |
| 145 "web/WebTextInputType.h", | 134 "web/WebTextInputType.h", |
| 146 "web/WebTextRun.h", | 135 "web/WebTextRun.h", |
| 147 "web/WebTouchAction.h", | 136 "web/WebTouchAction.h", |
| 148 "web/WebURLLoaderOptions.h", | 137 "web/WebURLLoaderOptions.h", |
| 149 "web/WebView.h", | 138 "web/WebView.h", |
| 150 "web/WebViewClient.h", | 139 "web/WebViewClient.h", |
| 151 "web/WebWidget.h", | 140 "web/WebWidget.h", |
| 152 "web/WebWidgetClient.h", | 141 "web/WebWidgetClient.h", |
| 153 "web/linux/WebFontRendering.h", | 142 "web/linux/WebFontRendering.h", |
| 154 ] | 143 ] |
| 155 } | 144 } |
| OLD | NEW |