| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 "FrameLoaderClientImpl.cpp", | 45 "FrameLoaderClientImpl.cpp", |
| 46 "FrameLoaderClientImpl.h", | 46 "FrameLoaderClientImpl.h", |
| 47 "GraphicsLayerFactoryChromium.cpp", | 47 "GraphicsLayerFactoryChromium.cpp", |
| 48 "GraphicsLayerFactoryChromium.h", | 48 "GraphicsLayerFactoryChromium.h", |
| 49 "LinkHighlight.cpp", | 49 "LinkHighlight.cpp", |
| 50 "LinkHighlight.h", | 50 "LinkHighlight.h", |
| 51 "PageWidgetDelegate.cpp", | 51 "PageWidgetDelegate.cpp", |
| 52 "PageWidgetDelegate.h", | 52 "PageWidgetDelegate.h", |
| 53 "SpellCheckerClientImpl.cpp", | 53 "SpellCheckerClientImpl.cpp", |
| 54 "SpellCheckerClientImpl.h", | 54 "SpellCheckerClientImpl.h", |
| 55 "ViewportAnchor.cpp", | |
| 56 "ViewportAnchor.h", | |
| 57 "WebArrayBufferConverter.cpp", | 55 "WebArrayBufferConverter.cpp", |
| 58 "WebArrayBufferView.cpp", | 56 "WebArrayBufferView.cpp", |
| 59 "WebCache.cpp", | 57 "WebCache.cpp", |
| 60 "WebCachedURLRequest.cpp", | 58 "WebCachedURLRequest.cpp", |
| 61 "WebColorSuggestion.cpp", | 59 "WebColorSuggestion.cpp", |
| 62 "WebCustomElement.cpp", | 60 "WebCustomElement.cpp", |
| 63 "WebDOMCustomEvent.cpp", | 61 "WebDOMCustomEvent.cpp", |
| 64 "WebDOMError.cpp", | 62 "WebDOMError.cpp", |
| 65 "WebDOMEvent.cpp", | 63 "WebDOMEvent.cpp", |
| 66 "WebDOMMouseEvent.cpp", | 64 "WebDOMMouseEvent.cpp", |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 configs += [ "//sky/engine:config" ] | 173 configs += [ "//sky/engine:config" ] |
| 176 | 174 |
| 177 if (!is_component_build) { | 175 if (!is_component_build) { |
| 178 deps += [ "//sky/engine/core" ] | 176 deps += [ "//sky/engine/core" ] |
| 179 | 177 |
| 180 configs += [ "//sky/engine:inside_blink" ] | 178 configs += [ "//sky/engine:inside_blink" ] |
| 181 | 179 |
| 182 sources += platform_web_unittest_files | 180 sources += platform_web_unittest_files |
| 183 } | 181 } |
| 184 } | 182 } |
| OLD | NEW |