| 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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//sky/engine/config.gni") | 6 import("//sky/engine/config.gni") |
| 7 | 7 |
| 8 visibility = ["//sky/*"] | 8 visibility = ["//sky/*"] |
| 9 | 9 |
| 10 platform_web_unittest_files = [ | 10 platform_web_unittest_files = [ |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 "AssertMatchingEnums.cpp", | 40 "AssertMatchingEnums.cpp", |
| 41 "ChromeClientImpl.cpp", | 41 "ChromeClientImpl.cpp", |
| 42 "ChromeClientImpl.h", | 42 "ChromeClientImpl.h", |
| 43 "CompositionUnderlineBuilder.h", | 43 "CompositionUnderlineBuilder.h", |
| 44 "CompositionUnderlineVectorBuilder.cpp", | 44 "CompositionUnderlineVectorBuilder.cpp", |
| 45 "CompositionUnderlineVectorBuilder.h", | 45 "CompositionUnderlineVectorBuilder.h", |
| 46 "EditorClientImpl.cpp", | 46 "EditorClientImpl.cpp", |
| 47 "EditorClientImpl.h", | 47 "EditorClientImpl.h", |
| 48 "FrameLoaderClientImpl.cpp", | 48 "FrameLoaderClientImpl.cpp", |
| 49 "FrameLoaderClientImpl.h", | 49 "FrameLoaderClientImpl.h", |
| 50 "GraphicsLayerFactoryChromium.cpp", | |
| 51 "GraphicsLayerFactoryChromium.h", | |
| 52 "LinkHighlight.cpp", | |
| 53 "LinkHighlight.h", | |
| 54 "PageWidgetDelegate.cpp", | 50 "PageWidgetDelegate.cpp", |
| 55 "PageWidgetDelegate.h", | 51 "PageWidgetDelegate.h", |
| 56 "SpellCheckerClientImpl.cpp", | 52 "SpellCheckerClientImpl.cpp", |
| 57 "SpellCheckerClientImpl.h", | 53 "SpellCheckerClientImpl.h", |
| 58 "WebArrayBufferConverter.cpp", | 54 "WebArrayBufferConverter.cpp", |
| 59 "WebArrayBufferView.cpp", | 55 "WebArrayBufferView.cpp", |
| 60 "WebCache.cpp", | 56 "WebCache.cpp", |
| 61 "WebCachedURLRequest.cpp", | 57 "WebCachedURLRequest.cpp", |
| 62 "WebCustomElement.cpp", | 58 "WebCustomElement.cpp", |
| 63 "WebDocument.cpp", | 59 "WebDocument.cpp", |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 configs += [ "//sky/engine:config" ] | 153 configs += [ "//sky/engine:config" ] |
| 158 | 154 |
| 159 if (!is_component_build) { | 155 if (!is_component_build) { |
| 160 deps += [ "//sky/engine/core" ] | 156 deps += [ "//sky/engine/core" ] |
| 161 | 157 |
| 162 configs += [ "//sky/engine:inside_blink" ] | 158 configs += [ "//sky/engine:inside_blink" ] |
| 163 | 159 |
| 164 sources += platform_web_unittest_files | 160 sources += platform_web_unittest_files |
| 165 } | 161 } |
| 166 } | 162 } |
| OLD | NEW |