| 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 "Sky.cpp", | 73 "Sky.cpp", |
| 74 "WebLeakDetector.cpp", | 74 "WebLeakDetector.cpp", |
| 75 "WebLocalFrameImpl.cpp", | 75 "WebLocalFrameImpl.cpp", |
| 76 "WebLocalFrameImpl.h", | 76 "WebLocalFrameImpl.h", |
| 77 "WebNode.cpp", | 77 "WebNode.cpp", |
| 78 "WebRange.cpp", | 78 "WebRange.cpp", |
| 79 "WebRuntimeFeatures.cpp", | 79 "WebRuntimeFeatures.cpp", |
| 80 "WebScopedUserGesture.cpp", | 80 "WebScopedUserGesture.cpp", |
| 81 "WebScriptBindings.cpp", | 81 "WebScriptBindings.cpp", |
| 82 "WebScriptController.cpp", | 82 "WebScriptController.cpp", |
| 83 "WebScrollbarThemePainter.cpp", | |
| 84 "WebSecurityPolicy.cpp", | 83 "WebSecurityPolicy.cpp", |
| 85 "WebSettingsImpl.cpp", | 84 "WebSettingsImpl.cpp", |
| 86 "WebSettingsImpl.h", | 85 "WebSettingsImpl.h", |
| 87 "WebTextCheckingCompletionImpl.cpp", | 86 "WebTextCheckingCompletionImpl.cpp", |
| 88 "WebTextCheckingCompletionImpl.h", | 87 "WebTextCheckingCompletionImpl.h", |
| 89 "WebTextCheckingResult.cpp", | 88 "WebTextCheckingResult.cpp", |
| 90 "WebTextInputInfo.cpp", | 89 "WebTextInputInfo.cpp", |
| 91 "WebTextRun.cpp", | 90 "WebTextRun.cpp", |
| 92 "WebUserGestureIndicator.cpp", | 91 "WebUserGestureIndicator.cpp", |
| 93 "WebUserGestureToken.cpp", | 92 "WebUserGestureToken.cpp", |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 configs += [ "//sky/engine:config" ] | 156 configs += [ "//sky/engine:config" ] |
| 158 | 157 |
| 159 if (!is_component_build) { | 158 if (!is_component_build) { |
| 160 deps += [ "//sky/engine/core" ] | 159 deps += [ "//sky/engine/core" ] |
| 161 | 160 |
| 162 configs += [ "//sky/engine:inside_blink" ] | 161 configs += [ "//sky/engine:inside_blink" ] |
| 163 | 162 |
| 164 sources += platform_web_unittest_files | 163 sources += platform_web_unittest_files |
| 165 } | 164 } |
| 166 } | 165 } |
| OLD | NEW |