| 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 18 matching lines...) Expand all Loading... |
| 29 "platform/WebExternalTextureLayerClient.h", | 29 "platform/WebExternalTextureLayerClient.h", |
| 30 "platform/WebExternalTextureMailbox.h", | 30 "platform/WebExternalTextureMailbox.h", |
| 31 "platform/WebFallbackThemeEngine.h", | 31 "platform/WebFallbackThemeEngine.h", |
| 32 "platform/WebFloatPoint.h", | 32 "platform/WebFloatPoint.h", |
| 33 "platform/WebFloatPoint3D.h", | 33 "platform/WebFloatPoint3D.h", |
| 34 "platform/WebFloatRect.h", | 34 "platform/WebFloatRect.h", |
| 35 "platform/WebFloatSize.h", | 35 "platform/WebFloatSize.h", |
| 36 "platform/WebGestureDevice.h", | 36 "platform/WebGestureDevice.h", |
| 37 "platform/WebGraphicsContext3D.h", | 37 "platform/WebGraphicsContext3D.h", |
| 38 "platform/WebGraphicsContext3DProvider.h", | 38 "platform/WebGraphicsContext3DProvider.h", |
| 39 "platform/WebHTTPBody.h", | |
| 40 "platform/WebHTTPHeaderVisitor.h", | |
| 41 "platform/WebHTTPLoadInfo.h", | |
| 42 "platform/WebImage.h", | 39 "platform/WebImage.h", |
| 43 "platform/WebImageLayer.h", | 40 "platform/WebImageLayer.h", |
| 44 "platform/WebInputEvent.h", | 41 "platform/WebInputEvent.h", |
| 45 "platform/WebLayer.h", | 42 "platform/WebLayer.h", |
| 46 "platform/WebLayerScrollClient.h", | 43 "platform/WebLayerScrollClient.h", |
| 47 "platform/WebLayerTreeView.h", | 44 "platform/WebLayerTreeView.h", |
| 48 "platform/WebLocalizedString.h", | 45 "platform/WebLocalizedString.h", |
| 49 "platform/WebNonCopyable.h", | 46 "platform/WebNonCopyable.h", |
| 50 "platform/WebPoint.h", | 47 "platform/WebPoint.h", |
| 51 "platform/WebPrivateOwnPtr.h", | 48 "platform/WebPrivateOwnPtr.h", |
| 52 "platform/WebPrivatePtr.h", | 49 "platform/WebPrivatePtr.h", |
| 53 "platform/WebRect.h", | 50 "platform/WebRect.h", |
| 54 "platform/WebReferrerPolicy.h", | 51 "platform/WebReferrerPolicy.h", |
| 55 "platform/WebRenderingStats.h", | 52 "platform/WebRenderingStats.h", |
| 56 "platform/WebScreenInfo.h", | 53 "platform/WebScreenInfo.h", |
| 57 "platform/WebScreenOrientationType.h", | 54 "platform/WebScreenOrientationType.h", |
| 58 "platform/WebSelectionBound.h", | 55 "platform/WebSelectionBound.h", |
| 59 "platform/WebSize.h", | 56 "platform/WebSize.h", |
| 60 "platform/WebString.h", | 57 "platform/WebString.h", |
| 61 "platform/WebThread.h", | 58 "platform/WebThread.h", |
| 62 "platform/WebURL.h", | 59 "platform/WebURL.h", |
| 63 "platform/WebURLError.h", | |
| 64 "platform/WebURLLoadTiming.h", | |
| 65 "platform/WebURLLoader.h", | |
| 66 "platform/WebURLLoaderClient.h", | |
| 67 "platform/WebURLRequest.h", | |
| 68 "platform/WebURLResponse.h", | |
| 69 "platform/WebUnitTestSupport.h", | 60 "platform/WebUnitTestSupport.h", |
| 70 "platform/WebVector.h", | 61 "platform/WebVector.h", |
| 71 "platform/sky_display_metrics.h", | 62 "platform/sky_display_metrics.h", |
| 72 "platform/android/WebSandboxSupport.h", | 63 "platform/android/WebSandboxSupport.h", |
| 73 "platform/linux/WebFallbackFont.h", | 64 "platform/linux/WebFallbackFont.h", |
| 74 "platform/linux/WebFontInfo.h", | 65 "platform/linux/WebFontInfo.h", |
| 75 "platform/linux/WebFontRenderStyle.h", | 66 "platform/linux/WebFontRenderStyle.h", |
| 76 "platform/linux/WebSandboxSupport.h", | 67 "platform/linux/WebSandboxSupport.h", |
| 77 ] | 68 ] |
| 78 } | 69 } |
| 79 | 70 |
| 80 source_set("web_headers") { | 71 source_set("web_headers") { |
| 81 public = [ | 72 public = [ |
| 82 "web/Sky.h", | 73 "web/Sky.h", |
| 83 "web/WebRuntimeFeatures.h", | 74 "web/WebRuntimeFeatures.h", |
| 84 ] | 75 ] |
| 85 } | 76 } |
| OLD | NEW |