| 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 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 visibility = [ "//sky/*" ] | 9 visibility = [ "//sky/*" ] |
| 10 | 10 |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 "WebImageDecoder.cpp", | 67 "WebImageDecoder.cpp", |
| 68 "WebInputEventConversion.cpp", | 68 "WebInputEventConversion.cpp", |
| 69 "WebInputEventConversion.h", | 69 "WebInputEventConversion.h", |
| 70 "Sky.cpp", | 70 "Sky.cpp", |
| 71 "WebLeakDetector.cpp", | 71 "WebLeakDetector.cpp", |
| 72 "WebLocalFrameImpl.cpp", | 72 "WebLocalFrameImpl.cpp", |
| 73 "WebLocalFrameImpl.h", | 73 "WebLocalFrameImpl.h", |
| 74 "WebNode.cpp", | 74 "WebNode.cpp", |
| 75 "WebRange.cpp", | 75 "WebRange.cpp", |
| 76 "WebRuntimeFeatures.cpp", | 76 "WebRuntimeFeatures.cpp", |
| 77 "WebScopedUserGesture.cpp", | |
| 78 "WebScriptBindings.cpp", | 77 "WebScriptBindings.cpp", |
| 79 "WebScriptController.cpp", | 78 "WebScriptController.cpp", |
| 80 "WebSettingsImpl.cpp", | 79 "WebSettingsImpl.cpp", |
| 81 "WebSettingsImpl.h", | 80 "WebSettingsImpl.h", |
| 82 "WebTextCheckingCompletionImpl.cpp", | 81 "WebTextCheckingCompletionImpl.cpp", |
| 83 "WebTextCheckingCompletionImpl.h", | 82 "WebTextCheckingCompletionImpl.h", |
| 84 "WebTextCheckingResult.cpp", | 83 "WebTextCheckingResult.cpp", |
| 85 "WebTextInputInfo.cpp", | 84 "WebTextInputInfo.cpp", |
| 86 "WebTextRun.cpp", | 85 "WebTextRun.cpp", |
| 87 "WebUserGestureIndicator.cpp", | |
| 88 "WebUserGestureToken.cpp", | |
| 89 "WebViewImpl.cpp", | 86 "WebViewImpl.cpp", |
| 90 "WebViewImpl.h", | 87 "WebViewImpl.h", |
| 91 "linux/WebFontRendering.cpp", | 88 "linux/WebFontRendering.cpp", |
| 92 ] | 89 ] |
| 93 | 90 |
| 94 if (is_component_build) { | 91 if (is_component_build) { |
| 95 deps += [ | 92 deps += [ |
| 96 "//base/test:test_support", | 93 "//base/test:test_support", |
| 97 "//testing/gmock", | 94 "//testing/gmock", |
| 98 "//testing/gtest", | 95 "//testing/gtest", |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 configs += [ "//sky/engine:config" ] | 153 configs += [ "//sky/engine:config" ] |
| 157 | 154 |
| 158 if (!is_component_build) { | 155 if (!is_component_build) { |
| 159 deps += [ "//sky/engine/core" ] | 156 deps += [ "//sky/engine/core" ] |
| 160 | 157 |
| 161 configs += [ "//sky/engine:inside_blink" ] | 158 configs += [ "//sky/engine:inside_blink" ] |
| 162 | 159 |
| 163 sources += platform_web_unittest_files | 160 sources += platform_web_unittest_files |
| 164 } | 161 } |
| 165 } | 162 } |
| OLD | NEW |