| 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 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 339 "//components/omnibox/browser:unit_tests", | 339 "//components/omnibox/browser:unit_tests", |
| 340 "//components/open_from_clipboard:unit_tests", | 340 "//components/open_from_clipboard:unit_tests", |
| 341 "//components/packed_ct_ev_whitelist:unit_tests", | 341 "//components/packed_ct_ev_whitelist:unit_tests", |
| 342 "//components/password_manager/content/browser:unit_tests", | 342 "//components/password_manager/content/browser:unit_tests", |
| 343 "//components/password_manager/core/browser:unit_tests", | 343 "//components/password_manager/core/browser:unit_tests", |
| 344 "//components/password_manager/core/common:unit_tests", | 344 "//components/password_manager/core/common:unit_tests", |
| 345 "//components/password_manager/sync/browser:unit_tests", | 345 "//components/password_manager/sync/browser:unit_tests", |
| 346 "//components/precache/content:unit_tests", | 346 "//components/precache/content:unit_tests", |
| 347 "//components/precache/core:unit_tests", | 347 "//components/precache/core:unit_tests", |
| 348 "//components/proxy_config:unit_tests", | 348 "//components/proxy_config:unit_tests", |
| 349 "//components/query_parser:unit_tests", | |
| 350 "//components/rappor:unit_tests", | 349 "//components/rappor:unit_tests", |
| 351 "//components/search:unit_tests", | 350 "//components/search:unit_tests", |
| 352 "//components/search_engines:unit_tests", | 351 "//components/search_engines:unit_tests", |
| 353 "//components/search_provider_logos:unit_tests", | 352 "//components/search_provider_logos:unit_tests", |
| 354 "//components/signin/core/browser:unit_tests", | 353 "//components/signin/core/browser:unit_tests", |
| 355 "//components/suggestions:unit_tests", | 354 "//components/suggestions:unit_tests", |
| 356 "//components/sync_driver:unit_tests", | 355 "//components/sync_driver:unit_tests", |
| 357 "//components/translate/core/browser:unit_tests", | 356 "//components/translate/core/browser:unit_tests", |
| 358 "//components/translate/core/common:unit_tests", | 357 "//components/translate/core/common:unit_tests", |
| 359 "//components/translate/core/language_detection:unit_tests", | 358 "//components/translate/core/language_detection:unit_tests", |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 443 deps -= [ "//components/devtools_http_handler:unit_tests" ] | 442 deps -= [ "//components/devtools_http_handler:unit_tests" ] |
| 444 } else { | 443 } else { |
| 445 # Non-iOS tests. | 444 # Non-iOS tests. |
| 446 deps += [ | 445 deps += [ |
| 447 "//components/error_page/renderer:unit_tests", | 446 "//components/error_page/renderer:unit_tests", |
| 448 "//components/guest_view/browser:unit_tests", | 447 "//components/guest_view/browser:unit_tests", |
| 449 "//components/navigation_interception:unit_tests", | 448 "//components/navigation_interception:unit_tests", |
| 450 "//components/network_hints/renderer:unit_tests", | 449 "//components/network_hints/renderer:unit_tests", |
| 451 "//components/safe_json:unit_tests", | 450 "//components/safe_json:unit_tests", |
| 452 "//components/scheduler:unit_tests", | 451 "//components/scheduler:unit_tests", |
| 453 "//components/visitedlink/test:unit_tests", | |
| 454 "//components/web_cache/browser:unit_tests", | |
| 455 ] | 452 ] |
| 456 } | 453 } |
| 457 | 454 |
| 458 if (enable_basic_printing || enable_print_preview) { | 455 if (enable_basic_printing || enable_print_preview) { |
| 459 deps += [ | 456 deps += [ |
| 460 "//components/printing/browser", | 457 "//components/printing/browser", |
| 461 "//components/printing/common", | 458 "//components/printing/common", |
| 462 "//components/printing/renderer", | 459 "//components/printing/renderer", |
| 463 ] | 460 ] |
| 464 } | 461 } |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 577 | 574 |
| 578 deps = [ | 575 deps = [ |
| 579 "//base", | 576 "//base", |
| 580 "//base/test:test_support_perf", | 577 "//base/test:test_support_perf", |
| 581 "//testing/gtest", | 578 "//testing/gtest", |
| 582 "//testing/perf", | 579 "//testing/perf", |
| 583 "//content/test:test_support", | 580 "//content/test:test_support", |
| 584 "//components/visitedlink/browser", | 581 "//components/visitedlink/browser", |
| 585 ] | 582 ] |
| 586 } | 583 } |
| OLD | NEW |