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/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 import("//tools/grit/repack.gni") | 8 import("//tools/grit/repack.gni") |
9 | 9 |
10 if (is_android) { | 10 if (is_android) { |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 "//components/undo:unit_tests", | 135 "//components/undo:unit_tests", |
136 "//components/update_client:unit_tests", | 136 "//components/update_client:unit_tests", |
137 "//components/upload_list:unit_tests", | 137 "//components/upload_list:unit_tests", |
138 "//components/url_formatter:unit_tests", | 138 "//components/url_formatter:unit_tests", |
139 "//components/url_matcher:unit_tests", | 139 "//components/url_matcher:unit_tests", |
140 "//components/user_prefs/tracked:unit_tests", | 140 "//components/user_prefs/tracked:unit_tests", |
141 "//components/variations:unit_tests", | 141 "//components/variations:unit_tests", |
142 "//components/variations/service:unit_tests", | 142 "//components/variations/service:unit_tests", |
143 "//components/web_resource:unit_tests", | 143 "//components/web_resource:unit_tests", |
144 "//components/webdata/common:unit_tests", | 144 "//components/webdata/common:unit_tests", |
| 145 |
| 146 "//components/spellcheck/browser:unit_tests", |
| 147 "//components/spellcheck/renderer:unit_tests", |
145 | 148 |
146 # Direct dependencies of components/test/run_all_unittests.cc. | 149 # Direct dependencies of components/test/run_all_unittests.cc. |
147 "//components/content_settings/core/common", | 150 "//components/content_settings/core/common", |
148 "//mojo/edk/system", | 151 "//mojo/edk/system", |
149 "//net", | 152 "//net", |
150 "//testing/gtest", | 153 "//testing/gtest", |
151 "//ui/base", | 154 "//ui/base", |
152 "//ui/resources:ui_test_pak", | 155 "//ui/resources:ui_test_pak", |
153 ] | 156 ] |
154 | 157 |
| 158 |
| 159 if (enable_spellcheck) { |
| 160 deps += [ |
| 161 "//components/spellcheck/browser", |
| 162 "//components/spellcheck/common", |
| 163 "//components/spellcheck/renderer", |
| 164 ] |
| 165 } |
| 166 |
155 if (enable_nacl) { | 167 if (enable_nacl) { |
156 deps += [ "//components/nacl/browser:unit_tests" ] | 168 deps += [ "//components/nacl/browser:unit_tests" ] |
157 } | 169 } |
158 | 170 |
159 if (is_ios) { | 171 if (is_ios) { |
160 deps += [ | 172 deps += [ |
161 "//components/signin/ios/browser:unit_tests", | 173 "//components/signin/ios/browser:unit_tests", |
162 "//components/translate/ios/browser:unit_tests", | 174 "//components/translate/ios/browser:unit_tests", |
163 ] | 175 ] |
164 | 176 |
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
494 "//base/test:test_support_perf", | 506 "//base/test:test_support_perf", |
495 "//components/scheduler", | 507 "//components/scheduler", |
496 "//components/visitedlink/browser", | 508 "//components/visitedlink/browser", |
497 "//content/test:test_support", | 509 "//content/test:test_support", |
498 "//testing/gtest", | 510 "//testing/gtest", |
499 "//testing/perf", | 511 "//testing/perf", |
500 "//url", | 512 "//url", |
501 ] | 513 ] |
502 } | 514 } |
503 } | 515 } |
OLD | NEW |