| 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 config("sky_headers_config") { |
| 14 include_dirs = [ ".." ] | 14 include_dirs = [ ".." ] |
| 15 } | 15 } |
| 16 | 16 |
| 17 # Depend on this target to use public sky API headers for things like enums | 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. | 18 # and public structures without actually linking against any Blink libraries. |
| 19 source_set("sky_headers") { | 19 source_set("sky_headers") { |
| 20 direct_dependent_configs = [ | 20 direct_dependent_configs = [ |
| 21 ":sky_headers_config", | 21 ":sky_headers_config", |
| 22 ] | 22 ] |
| 23 | 23 |
| 24 deps = [ |
| 25 "//ui/gfx/geometry", |
| 26 ] |
| 27 |
| 24 public = [ | 28 public = [ |
| 25 "platform/Platform.h", | 29 "platform/Platform.h", |
| 26 "platform/ServiceProvider.h", | 30 "platform/ServiceProvider.h", |
| 27 "platform/WebArrayBuffer.h", | 31 "platform/WebArrayBuffer.h", |
| 28 "platform/WebBlendMode.h", | 32 "platform/WebBlendMode.h", |
| 29 "platform/WebCString.h", | 33 "platform/WebCString.h", |
| 30 "platform/WebCallbacks.h", | 34 "platform/WebCallbacks.h", |
| 31 "platform/WebCanvas.h", | 35 "platform/WebCanvas.h", |
| 32 "platform/WebClipboard.h", | 36 "platform/WebClipboard.h", |
| 33 "platform/WebColor.h", | 37 "platform/WebColor.h", |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 "web/WebURLLoaderOptions.h", | 166 "web/WebURLLoaderOptions.h", |
| 163 "web/WebUserGestureIndicator.h", | 167 "web/WebUserGestureIndicator.h", |
| 164 "web/WebUserGestureToken.h", | 168 "web/WebUserGestureToken.h", |
| 165 "web/WebView.h", | 169 "web/WebView.h", |
| 166 "web/WebViewClient.h", | 170 "web/WebViewClient.h", |
| 167 "web/WebWidget.h", | 171 "web/WebWidget.h", |
| 168 "web/WebWidgetClient.h", | 172 "web/WebWidgetClient.h", |
| 169 "web/linux/WebFontRendering.h", | 173 "web/linux/WebFontRendering.h", |
| 170 ] | 174 ] |
| 171 } | 175 } |
| OLD | NEW |