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 # Collection of all components. You wouldn't link to this, but this is rather | 10 # Collection of all components. You wouldn't link to this, but this is rather |
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
288 "//components/domain_reliability:unit_tests", | 288 "//components/domain_reliability:unit_tests", |
289 "//components/favicon_base:unit_tests", | 289 "//components/favicon_base:unit_tests", |
290 "//components/google/core/browser:unit_tests", | 290 "//components/google/core/browser:unit_tests", |
291 "//components/invalidation/impl:unittests", | 291 "//components/invalidation/impl:unittests", |
292 "//components/login:unit_tests", | 292 "//components/login:unit_tests", |
293 "//components/metrics:unit_tests", | 293 "//components/metrics:unit_tests", |
294 "//components/mime_util:unit_tests", | 294 "//components/mime_util:unit_tests", |
295 "//components/offline_pages:unit_tests", | 295 "//components/offline_pages:unit_tests", |
296 "//components/omnibox:unit_tests", | 296 "//components/omnibox:unit_tests", |
297 "//components/packed_ct_ev_whitelist:unit_tests", | 297 "//components/packed_ct_ev_whitelist:unit_tests", |
298 "//components/safe_json:unit_tests", | |
298 "//components/undo:unit_tests", | 299 "//components/undo:unit_tests", |
299 "//components/update_client:unit_tests", | 300 "//components/update_client:unit_tests", |
300 "//components/variations:unit_tests", | 301 "//components/variations:unit_tests", |
301 "//components/web_resource:unit_tests", | 302 "//components/web_resource:unit_tests", |
302 "//components/webcrypto:unit_tests", | 303 "//components/webcrypto:unit_tests", |
303 "//components/webdata/common:unit_tests", | 304 "//components/webdata/common:unit_tests", |
304 | 305 |
305 # These are the deps required by the code in this target. | 306 # These are the deps required by the code in this target. |
306 "//base", | 307 "//base", |
307 "//base/test:test_support", | 308 "//base/test:test_support", |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
340 #deps += [ "//components/constrained_window:unit_tests" ] | 341 #deps += [ "//components/constrained_window:unit_tests" ] |
341 } | 342 } |
342 if (is_win) { | 343 if (is_win) { |
343 deps += [ "//components/browser_watcher:unit_tests" ] | 344 deps += [ "//components/browser_watcher:unit_tests" ] |
344 } | 345 } |
345 if (is_ios) { | 346 if (is_ios) { |
346 deps -= [ "//components/devtools_http_handler:unit_tests" ] | 347 deps -= [ "//components/devtools_http_handler:unit_tests" ] |
347 } | 348 } |
348 | 349 |
349 if (!is_ios) { | 350 if (!is_ios) { |
350 deps += [ "//components/scheduler:unit_tests" ] | 351 deps += [ |
352 "//components/safe_json:unit_tests", | |
sdefresne
2015/07/10 14:01:19
I don't understand this addition. At line 298, you
Bernhard Bauer
2015/07/10 14:09:09
You're right, the tests shouldn't be run on iOS. R
| |
353 "//components/scheduler:unit_tests", | |
354 ] | |
351 } | 355 } |
352 } | 356 } |
353 | 357 |
354 repack("components_tests_pak") { | 358 repack("components_tests_pak") { |
355 sources = [ | 359 sources = [ |
356 "$root_gen_dir/components/components_resources.pak", | 360 "$root_gen_dir/components/components_resources.pak", |
357 "$root_gen_dir/components/strings/components_strings_en-US.pak", | 361 "$root_gen_dir/components/strings/components_strings_en-US.pak", |
358 ] | 362 ] |
359 | 363 |
360 output = "$root_out_dir/components_tests_resources.pak" | 364 output = "$root_out_dir/components_tests_resources.pak" |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
429 | 433 |
430 deps = [ | 434 deps = [ |
431 "//base", | 435 "//base", |
432 "//base/test:test_support_perf", | 436 "//base/test:test_support_perf", |
433 "//testing/gtest", | 437 "//testing/gtest", |
434 "//testing/perf", | 438 "//testing/perf", |
435 "//content/test:test_support", | 439 "//content/test:test_support", |
436 "//components/visitedlink/browser", | 440 "//components/visitedlink/browser", |
437 ] | 441 ] |
438 } | 442 } |
OLD | NEW |