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