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