| 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 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 284 "//components/domain_reliability:unit_tests", | 284 "//components/domain_reliability:unit_tests", |
| 285 "//components/favicon_base:unit_tests", | 285 "//components/favicon_base:unit_tests", |
| 286 "//components/google/core/browser:unit_tests", | 286 "//components/google/core/browser:unit_tests", |
| 287 "//components/invalidation/impl:unittests", | 287 "//components/invalidation/impl:unittests", |
| 288 "//components/login:unit_tests", | 288 "//components/login:unit_tests", |
| 289 "//components/metrics:unit_tests", | 289 "//components/metrics:unit_tests", |
| 290 "//components/mime_util:unit_tests", | 290 "//components/mime_util:unit_tests", |
| 291 "//components/offline_pages:unit_tests", | 291 "//components/offline_pages:unit_tests", |
| 292 "//components/omnibox:unit_tests", | 292 "//components/omnibox:unit_tests", |
| 293 "//components/packed_ct_ev_whitelist:unit_tests", | 293 "//components/packed_ct_ev_whitelist:unit_tests", |
| 294 "//components/safe_json:unit_tests", |
| 294 "//components/undo:unit_tests", | 295 "//components/undo:unit_tests", |
| 295 "//components/update_client:unit_tests", | 296 "//components/update_client:unit_tests", |
| 296 "//components/variations:unit_tests", | 297 "//components/variations:unit_tests", |
| 297 "//components/web_resource:unit_tests", | 298 "//components/web_resource:unit_tests", |
| 298 "//components/webcrypto:unit_tests", | 299 "//components/webcrypto:unit_tests", |
| 299 "//components/webdata/common:unit_tests", | 300 "//components/webdata/common:unit_tests", |
| 300 | 301 |
| 301 # These are the deps required by the code in this target. | 302 # These are the deps required by the code in this target. |
| 302 "//base", | 303 "//base", |
| 303 "//base/test:test_support", | 304 "//base/test:test_support", |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 336 #deps += [ "//components/constrained_window:unit_tests" ] | 337 #deps += [ "//components/constrained_window:unit_tests" ] |
| 337 } | 338 } |
| 338 if (is_win) { | 339 if (is_win) { |
| 339 deps += [ "//components/browser_watcher:unit_tests" ] | 340 deps += [ "//components/browser_watcher:unit_tests" ] |
| 340 } | 341 } |
| 341 if (is_ios) { | 342 if (is_ios) { |
| 342 deps -= [ "//components/devtools_http_handler:unit_tests" ] | 343 deps -= [ "//components/devtools_http_handler:unit_tests" ] |
| 343 } | 344 } |
| 344 | 345 |
| 345 if (!is_ios) { | 346 if (!is_ios) { |
| 346 deps += [ "//components/scheduler:unit_tests" ] | 347 deps += [ |
| 348 "//components/safe_json:unit_tests", |
| 349 "//components/scheduler:unit_tests", |
| 350 ] |
| 347 } | 351 } |
| 348 } | 352 } |
| 349 | 353 |
| 350 repack("components_tests_pak") { | 354 repack("components_tests_pak") { |
| 351 sources = [ | 355 sources = [ |
| 352 "$root_gen_dir/components/components_resources.pak", | 356 "$root_gen_dir/components/components_resources.pak", |
| 353 "$root_gen_dir/components/strings/components_strings_en-US.pak", | 357 "$root_gen_dir/components/strings/components_strings_en-US.pak", |
| 354 ] | 358 ] |
| 355 | 359 |
| 356 output = "$root_out_dir/components_tests_resources.pak" | 360 output = "$root_out_dir/components_tests_resources.pak" |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 425 | 429 |
| 426 deps = [ | 430 deps = [ |
| 427 "//base", | 431 "//base", |
| 428 "//base/test:test_support_perf", | 432 "//base/test:test_support_perf", |
| 429 "//testing/gtest", | 433 "//testing/gtest", |
| 430 "//testing/perf", | 434 "//testing/perf", |
| 431 "//content/test:test_support", | 435 "//content/test:test_support", |
| 432 "//components/visitedlink/browser", | 436 "//components/visitedlink/browser", |
| 433 ] | 437 ] |
| 434 } | 438 } |
| OLD | NEW |