| 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 22 matching lines...) Expand all Loading... |
| 33 "//sky/engine:non_test_config", | 33 "//sky/engine:non_test_config", |
| 34 ] | 34 ] |
| 35 | 35 |
| 36 sources = [ | 36 sources = [ |
| 37 "AssertMatchingEnums.cpp", | 37 "AssertMatchingEnums.cpp", |
| 38 "ChromeClientImpl.cpp", | 38 "ChromeClientImpl.cpp", |
| 39 "ChromeClientImpl.h", | 39 "ChromeClientImpl.h", |
| 40 "CompositionUnderlineBuilder.h", | 40 "CompositionUnderlineBuilder.h", |
| 41 "CompositionUnderlineVectorBuilder.cpp", | 41 "CompositionUnderlineVectorBuilder.cpp", |
| 42 "CompositionUnderlineVectorBuilder.h", | 42 "CompositionUnderlineVectorBuilder.h", |
| 43 "ContextMenuClientImpl.cpp", | |
| 44 "ContextMenuClientImpl.h", | |
| 45 "EditorClientImpl.cpp", | 43 "EditorClientImpl.cpp", |
| 46 "EditorClientImpl.h", | 44 "EditorClientImpl.h", |
| 47 "FrameLoaderClientImpl.cpp", | 45 "FrameLoaderClientImpl.cpp", |
| 48 "FrameLoaderClientImpl.h", | 46 "FrameLoaderClientImpl.h", |
| 49 "GraphicsLayerFactoryChromium.cpp", | 47 "GraphicsLayerFactoryChromium.cpp", |
| 50 "GraphicsLayerFactoryChromium.h", | 48 "GraphicsLayerFactoryChromium.h", |
| 51 "LinkHighlight.cpp", | 49 "LinkHighlight.cpp", |
| 52 "LinkHighlight.h", | 50 "LinkHighlight.h", |
| 53 "PageOverlay.cpp", | 51 "PageOverlay.cpp", |
| 54 "PageOverlay.h", | 52 "PageOverlay.h", |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 configs += [ "//sky/engine:config" ] | 185 configs += [ "//sky/engine:config" ] |
| 188 | 186 |
| 189 if (!is_component_build) { | 187 if (!is_component_build) { |
| 190 deps += [ "//sky/engine/core" ] | 188 deps += [ "//sky/engine/core" ] |
| 191 | 189 |
| 192 configs += [ "//sky/engine:inside_blink" ] | 190 configs += [ "//sky/engine:inside_blink" ] |
| 193 | 191 |
| 194 sources += platform_web_unittest_files | 192 sources += platform_web_unittest_files |
| 195 } | 193 } |
| 196 } | 194 } |
| OLD | NEW |