| 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 ] |
| 11 } | 11 } |
| 12 | 12 |
| 13 config("sky_headers_config") { | 13 source_set("platform_headers") { |
| 14 include_dirs = [ ".." ] | |
| 15 } | |
| 16 | |
| 17 # Depend on this target to use public sky API headers for things like enums | |
| 18 # and public structures without actually linking against any Blink libraries. | |
| 19 source_set("sky_headers") { | |
| 20 direct_dependent_configs = [ | |
| 21 ":sky_headers_config", | |
| 22 ] | |
| 23 | |
| 24 public = [ | 14 public = [ |
| 25 "platform/Platform.h", | 15 "platform/Platform.h", |
| 26 "platform/ServiceProvider.h", | 16 "platform/ServiceProvider.h", |
| 27 "platform/WebArrayBuffer.h", | 17 "platform/WebArrayBuffer.h", |
| 28 "platform/WebBlendMode.h", | 18 "platform/WebBlendMode.h", |
| 29 "platform/WebCString.h", | 19 "platform/WebCString.h", |
| 30 "platform/WebCallbacks.h", | 20 "platform/WebCallbacks.h", |
| 31 "platform/WebCanvas.h", | 21 "platform/WebCanvas.h", |
| 32 "platform/WebClipboard.h", | 22 "platform/WebClipboard.h", |
| 33 "platform/WebColor.h", | 23 "platform/WebColor.h", |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 "platform/WebURLLoaderClient.h", | 90 "platform/WebURLLoaderClient.h", |
| 101 "platform/WebURLRequest.h", | 91 "platform/WebURLRequest.h", |
| 102 "platform/WebURLResponse.h", | 92 "platform/WebURLResponse.h", |
| 103 "platform/WebUnitTestSupport.h", | 93 "platform/WebUnitTestSupport.h", |
| 104 "platform/WebVector.h", | 94 "platform/WebVector.h", |
| 105 "platform/android/WebSandboxSupport.h", | 95 "platform/android/WebSandboxSupport.h", |
| 106 "platform/linux/WebFallbackFont.h", | 96 "platform/linux/WebFallbackFont.h", |
| 107 "platform/linux/WebFontInfo.h", | 97 "platform/linux/WebFontInfo.h", |
| 108 "platform/linux/WebFontRenderStyle.h", | 98 "platform/linux/WebFontRenderStyle.h", |
| 109 "platform/linux/WebSandboxSupport.h", | 99 "platform/linux/WebSandboxSupport.h", |
| 100 ] |
| 101 } |
| 102 |
| 103 source_set("web_headers") { |
| 104 public = [ |
| 110 "web/Sky.h", | 105 "web/Sky.h", |
| 111 "web/WebActiveWheelFlingParameters.h", | 106 "web/WebActiveWheelFlingParameters.h", |
| 112 "web/WebArrayBufferConverter.h", | 107 "web/WebArrayBufferConverter.h", |
| 113 "web/WebArrayBufferView.h", | 108 "web/WebArrayBufferView.h", |
| 114 "web/WebBeginFrameArgs.h", | 109 "web/WebBeginFrameArgs.h", |
| 115 "web/WebCache.h", | 110 "web/WebCache.h", |
| 116 "web/WebCachedURLRequest.h", | 111 "web/WebCachedURLRequest.h", |
| 117 "web/WebCompositionUnderline.h", | 112 "web/WebCompositionUnderline.h", |
| 118 "web/WebConsoleMessage.h", | 113 "web/WebConsoleMessage.h", |
| 119 "web/WebContentDetectionResult.h", | 114 "web/WebContentDetectionResult.h", |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 "web/WebURLLoaderOptions.h", | 157 "web/WebURLLoaderOptions.h", |
| 163 "web/WebUserGestureIndicator.h", | 158 "web/WebUserGestureIndicator.h", |
| 164 "web/WebUserGestureToken.h", | 159 "web/WebUserGestureToken.h", |
| 165 "web/WebView.h", | 160 "web/WebView.h", |
| 166 "web/WebViewClient.h", | 161 "web/WebViewClient.h", |
| 167 "web/WebWidget.h", | 162 "web/WebWidget.h", |
| 168 "web/WebWidgetClient.h", | 163 "web/WebWidgetClient.h", |
| 169 "web/linux/WebFontRendering.h", | 164 "web/linux/WebFontRendering.h", |
| 170 ] | 165 ] |
| 171 } | 166 } |
| OLD | NEW |