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