| 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 "platform/linux/WebFallbackFont.h", | 73 "platform/linux/WebFallbackFont.h", |
| 74 "platform/linux/WebFontInfo.h", | 74 "platform/linux/WebFontInfo.h", |
| 75 "platform/linux/WebFontRenderStyle.h", | 75 "platform/linux/WebFontRenderStyle.h", |
| 76 "platform/linux/WebSandboxSupport.h", | 76 "platform/linux/WebSandboxSupport.h", |
| 77 ] | 77 ] |
| 78 } | 78 } |
| 79 | 79 |
| 80 source_set("web_headers") { | 80 source_set("web_headers") { |
| 81 public = [ | 81 public = [ |
| 82 "web/Sky.h", | 82 "web/Sky.h", |
| 83 "web/WebBeginFrameArgs.h", | |
| 84 "web/WebCache.h", | |
| 85 "web/WebCachedURLRequest.h", | |
| 86 "web/WebCompositionUnderline.h", | |
| 87 "web/WebDocument.h", | |
| 88 "web/WebElement.h", | |
| 89 "web/WebExceptionCode.h", | |
| 90 "web/WebFont.h", | |
| 91 "web/WebFontDescription.h", | |
| 92 "web/WebFrame.h", | |
| 93 "web/WebFrameClient.h", | |
| 94 "web/WebLocalFrame.h", | |
| 95 "web/WebNavigationPolicy.h", | |
| 96 "web/WebNavigationType.h", | |
| 97 "web/WebNavigatorContentUtilsClient.h", | |
| 98 "web/WebNode.h", | |
| 99 "web/WebPageVisibilityState.h", | |
| 100 "web/WebRange.h", | |
| 101 "web/WebRuntimeFeatures.h", | 83 "web/WebRuntimeFeatures.h", |
| 102 "web/WebScriptSource.h", | |
| 103 "web/WebSettings.h", | |
| 104 "web/WebSpellCheckClient.h", | |
| 105 "web/WebTextAffinity.h", | |
| 106 "web/WebTextCheckingCompletion.h", | |
| 107 "web/WebTextCheckingResult.h", | |
| 108 "web/WebTextCheckingType.h", | |
| 109 "web/WebTextDecorationType.h", | |
| 110 "web/WebTextDirection.h", | |
| 111 "web/WebTextInputInfo.h", | |
| 112 "web/WebTextInputType.h", | |
| 113 "web/WebTextRun.h", | |
| 114 "web/WebURLLoaderOptions.h", | |
| 115 "web/WebView.h", | |
| 116 "web/WebViewClient.h", | |
| 117 "web/WebWidget.h", | |
| 118 "web/linux/WebFontRendering.h", | |
| 119 ] | 84 ] |
| 120 } | 85 } |
| OLD | NEW |