| 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 "WebTextCheckingCompletionImpl.cpp", | 89 "WebTextCheckingCompletionImpl.cpp", |
| 90 "WebTextCheckingCompletionImpl.h", | 90 "WebTextCheckingCompletionImpl.h", |
| 91 "WebTextCheckingResult.cpp", | 91 "WebTextCheckingResult.cpp", |
| 92 "WebTextInputInfo.cpp", | 92 "WebTextInputInfo.cpp", |
| 93 "WebTextRun.cpp", | 93 "WebTextRun.cpp", |
| 94 "WebUserGestureIndicator.cpp", | 94 "WebUserGestureIndicator.cpp", |
| 95 "WebUserGestureToken.cpp", | 95 "WebUserGestureToken.cpp", |
| 96 "WebViewImpl.cpp", | 96 "WebViewImpl.cpp", |
| 97 "WebViewImpl.h", | 97 "WebViewImpl.h", |
| 98 "linux/WebFontRendering.cpp", | 98 "linux/WebFontRendering.cpp", |
| 99 "painting/ContinuousPainter.cpp", | |
| 100 "painting/ContinuousPainter.h", | |
| 101 "painting/PaintAggregator.cpp", | 99 "painting/PaintAggregator.cpp", |
| 102 "painting/PaintAggregator.h", | 100 "painting/PaintAggregator.h", |
| 103 ] | 101 ] |
| 104 | 102 |
| 105 if (is_component_build) { | 103 if (is_component_build) { |
| 106 deps += [ | 104 deps += [ |
| 107 "//base/test:test_support", | 105 "//base/test:test_support", |
| 108 "//testing/gmock", | 106 "//testing/gmock", |
| 109 "//testing/gtest", | 107 "//testing/gtest", |
| 110 "//sky/engine/core:testing", | 108 "//sky/engine/core:testing", |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 configs += [ "//sky/engine:config" ] | 157 configs += [ "//sky/engine:config" ] |
| 160 | 158 |
| 161 if (!is_component_build) { | 159 if (!is_component_build) { |
| 162 deps += [ "//sky/engine/core" ] | 160 deps += [ "//sky/engine/core" ] |
| 163 | 161 |
| 164 configs += [ "//sky/engine:inside_blink" ] | 162 configs += [ "//sky/engine:inside_blink" ] |
| 165 | 163 |
| 166 sources += platform_web_unittest_files | 164 sources += platform_web_unittest_files |
| 167 } | 165 } |
| 168 } | 166 } |
| OLD | NEW |