| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 "WebHitTestResult.cpp", | 80 "WebHitTestResult.cpp", |
| 81 "WebImageCache.cpp", | 81 "WebImageCache.cpp", |
| 82 "WebImageDecoder.cpp", | 82 "WebImageDecoder.cpp", |
| 83 "WebInputEvent.cpp", | 83 "WebInputEvent.cpp", |
| 84 "WebInputEventConversion.cpp", | 84 "WebInputEventConversion.cpp", |
| 85 "WebInputEventConversion.h", | 85 "WebInputEventConversion.h", |
| 86 "Sky.cpp", | 86 "Sky.cpp", |
| 87 "WebLeakDetector.cpp", | 87 "WebLeakDetector.cpp", |
| 88 "WebLocalFrameImpl.cpp", | 88 "WebLocalFrameImpl.cpp", |
| 89 "WebLocalFrameImpl.h", | 89 "WebLocalFrameImpl.h", |
| 90 "WebMediaDevicesRequest.cpp", | |
| 91 "WebMediaPlayerClientImpl.cpp", | |
| 92 "WebMediaPlayerClientImpl.h", | |
| 93 "WebNode.cpp", | 90 "WebNode.cpp", |
| 94 "WebPerformance.cpp", | 91 "WebPerformance.cpp", |
| 95 "WebRange.cpp", | 92 "WebRange.cpp", |
| 96 "WebRuntimeFeatures.cpp", | 93 "WebRuntimeFeatures.cpp", |
| 97 "WebScopedMicrotaskSuppression.cpp", | 94 "WebScopedMicrotaskSuppression.cpp", |
| 98 "WebScopedUserGesture.cpp", | 95 "WebScopedUserGesture.cpp", |
| 99 "WebScopedWindowFocusAllowedIndicator.cpp", | 96 "WebScopedWindowFocusAllowedIndicator.cpp", |
| 100 "WebScriptBindings.cpp", | 97 "WebScriptBindings.cpp", |
| 101 "WebScriptController.cpp", | 98 "WebScriptController.cpp", |
| 102 "WebScrollbarThemePainter.cpp", | 99 "WebScrollbarThemePainter.cpp", |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 configs += [ "//sky/engine:config" ] | 175 configs += [ "//sky/engine:config" ] |
| 179 | 176 |
| 180 if (!is_component_build) { | 177 if (!is_component_build) { |
| 181 deps += [ "//sky/engine/core" ] | 178 deps += [ "//sky/engine/core" ] |
| 182 | 179 |
| 183 configs += [ "//sky/engine:inside_blink" ] | 180 configs += [ "//sky/engine:inside_blink" ] |
| 184 | 181 |
| 185 sources += platform_web_unittest_files | 182 sources += platform_web_unittest_files |
| 186 } | 183 } |
| 187 } | 184 } |
| OLD | NEW |