| 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 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 } | 249 } |
| 250 | 250 |
| 251 if (!is_ios) { | 251 if (!is_ios) { |
| 252 deps += [ | 252 deps += [ |
| 253 "//components/app_modal", | 253 "//components/app_modal", |
| 254 "//components/browsing_data", | 254 "//components/browsing_data", |
| 255 "//components/certificate_transparency", | 255 "//components/certificate_transparency", |
| 256 "//components/guest_view/browser", | 256 "//components/guest_view/browser", |
| 257 "//components/guest_view/common", | 257 "//components/guest_view/common", |
| 258 "//components/guest_view/renderer", | 258 "//components/guest_view/renderer", |
| 259 "//components/page_load_metrics/browser", |
| 260 "//components/page_load_metrics/common", |
| 261 "//components/page_load_metrics/renderer", |
| 259 "//components/safe_json", | 262 "//components/safe_json", |
| 260 "//components/scheduler", | 263 "//components/scheduler", |
| 261 "//components/test_runner", | 264 "//components/test_runner", |
| 262 "//components/webcrypto", | 265 "//components/webcrypto", |
| 263 ] | 266 ] |
| 264 } | 267 } |
| 265 | 268 |
| 266 if (toolkit_views) { | 269 if (toolkit_views) { |
| 267 deps += [ "//components/constrained_window" ] | 270 deps += [ "//components/constrained_window" ] |
| 268 } | 271 } |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 454 if (is_ios) { | 457 if (is_ios) { |
| 455 deps += [ "//components/signin/core/browser:unit_tests" ] | 458 deps += [ "//components/signin/core/browser:unit_tests" ] |
| 456 deps -= [ "//components/devtools_http_handler:unit_tests" ] | 459 deps -= [ "//components/devtools_http_handler:unit_tests" ] |
| 457 } else { | 460 } else { |
| 458 # Non-iOS tests. | 461 # Non-iOS tests. |
| 459 deps += [ | 462 deps += [ |
| 460 "//components/error_page/renderer:unit_tests", | 463 "//components/error_page/renderer:unit_tests", |
| 461 "//components/guest_view/browser:unit_tests", | 464 "//components/guest_view/browser:unit_tests", |
| 462 "//components/navigation_interception:unit_tests", | 465 "//components/navigation_interception:unit_tests", |
| 463 "//components/network_hints/renderer:unit_tests", | 466 "//components/network_hints/renderer:unit_tests", |
| 467 "//components/page_load_metrics/browser:unit_tests", |
| 468 "//components/page_load_metrics/renderer:unit_tests", |
| 464 "//components/power:unit_tests", | 469 "//components/power:unit_tests", |
| 465 "//components/safe_json:unit_tests", | 470 "//components/safe_json:unit_tests", |
| 466 "//components/scheduler:unit_tests", | 471 "//components/scheduler:unit_tests", |
| 467 "//components/test_runner:test_runner", | 472 "//components/test_runner:test_runner", |
| 468 "//components/ui/zoom:unit_tests", | 473 "//components/ui/zoom:unit_tests", |
| 469 "//components/visitedlink/test:unit_tests", | 474 "//components/visitedlink/test:unit_tests", |
| 470 "//components/web_cache/browser:unit_tests", | 475 "//components/web_cache/browser:unit_tests", |
| 471 ] | 476 ] |
| 472 } | 477 } |
| 473 | 478 |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 593 | 598 |
| 594 deps = [ | 599 deps = [ |
| 595 "//base", | 600 "//base", |
| 596 "//base/test:test_support_perf", | 601 "//base/test:test_support_perf", |
| 597 "//testing/gtest", | 602 "//testing/gtest", |
| 598 "//testing/perf", | 603 "//testing/perf", |
| 599 "//content/test:test_support", | 604 "//content/test:test_support", |
| 600 "//components/visitedlink/browser", | 605 "//components/visitedlink/browser", |
| 601 ] | 606 ] |
| 602 } | 607 } |
| OLD | NEW |