| 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 source_set("platform_headers") { | 13 source_set("platform_headers") { |
| 14 public = [ | 14 public = [ |
| 15 "platform/Platform.h", | 15 "platform/Platform.h", |
| 16 "platform/ServiceProvider.h", | 16 "platform/ServiceProvider.h", |
| 17 "platform/WebArrayBuffer.h", | 17 "platform/WebArrayBuffer.h", |
| 18 "platform/WebBlendMode.h", | 18 "platform/WebBlendMode.h", |
| 19 "platform/WebCString.h", | 19 "platform/WebCString.h", |
| 20 "platform/WebCallbacks.h", | 20 "platform/WebCallbacks.h", |
| 21 "platform/WebCanvas.h", | 21 "platform/WebCanvas.h", |
| 22 "platform/WebClipboard.h", | 22 "platform/WebClipboard.h", |
| 23 "platform/WebColor.h", | 23 "platform/WebColor.h", |
| 24 "platform/WebCommon.h", | 24 "platform/WebCommon.h", |
| 25 "platform/WebCursorInfo.h", | |
| 26 "platform/WebData.h", | 25 "platform/WebData.h", |
| 27 "platform/WebDiscardableMemory.h", | 26 "platform/WebDiscardableMemory.h", |
| 28 "platform/WebExternalBitmap.h", | 27 "platform/WebExternalBitmap.h", |
| 29 "platform/WebExternalTextureLayer.h", | 28 "platform/WebExternalTextureLayer.h", |
| 30 "platform/WebExternalTextureLayerClient.h", | 29 "platform/WebExternalTextureLayerClient.h", |
| 31 "platform/WebExternalTextureMailbox.h", | 30 "platform/WebExternalTextureMailbox.h", |
| 32 "platform/WebFallbackThemeEngine.h", | 31 "platform/WebFallbackThemeEngine.h", |
| 33 "platform/WebFloatPoint.h", | 32 "platform/WebFloatPoint.h", |
| 34 "platform/WebFloatPoint3D.h", | 33 "platform/WebFloatPoint3D.h", |
| 35 "platform/WebFloatRect.h", | 34 "platform/WebFloatRect.h", |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 "web/WebTextInputInfo.h", | 110 "web/WebTextInputInfo.h", |
| 112 "web/WebTextInputType.h", | 111 "web/WebTextInputType.h", |
| 113 "web/WebTextRun.h", | 112 "web/WebTextRun.h", |
| 114 "web/WebURLLoaderOptions.h", | 113 "web/WebURLLoaderOptions.h", |
| 115 "web/WebView.h", | 114 "web/WebView.h", |
| 116 "web/WebViewClient.h", | 115 "web/WebViewClient.h", |
| 117 "web/WebWidget.h", | 116 "web/WebWidget.h", |
| 118 "web/linux/WebFontRendering.h", | 117 "web/linux/WebFontRendering.h", |
| 119 ] | 118 ] |
| 120 } | 119 } |
| OLD | NEW |