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 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
291 "//components/invalidation/impl:unittests", | 291 "//components/invalidation/impl:unittests", |
292 "//components/login:unit_tests", | 292 "//components/login:unit_tests", |
293 "//components/metrics:unit_tests", | 293 "//components/metrics:unit_tests", |
294 "//components/mime_util:unit_tests", | 294 "//components/mime_util:unit_tests", |
295 "//components/offline_pages:unit_tests", | 295 "//components/offline_pages:unit_tests", |
296 "//components/omnibox/browser:unit_tests", | 296 "//components/omnibox/browser:unit_tests", |
297 "//components/packed_ct_ev_whitelist:unit_tests", | 297 "//components/packed_ct_ev_whitelist:unit_tests", |
298 "//components/undo:unit_tests", | 298 "//components/undo:unit_tests", |
299 "//components/update_client:unit_tests", | 299 "//components/update_client:unit_tests", |
300 "//components/variations:unit_tests", | 300 "//components/variations:unit_tests", |
| 301 "//components/webcrypto:unit_tests", |
301 "//components/web_resource:unit_tests", | 302 "//components/web_resource:unit_tests", |
302 "//components/webcrypto:unit_tests", | |
303 "//components/webdata/common:unit_tests", | 303 "//components/webdata/common:unit_tests", |
304 | 304 |
305 # These are the deps required by the code in this target. | 305 # These are the deps required by the code in this target. |
306 "//base", | 306 "//base", |
307 "//base/test:test_support", | 307 "//base/test:test_support", |
| 308 "//components/sessions", |
308 "//content/test:test_support", | 309 "//content/test:test_support", |
309 "//net", | 310 "//net", |
310 "//ui/base", | 311 "//ui/base", |
311 "//ui/resources:ui_test_pak", | 312 "//ui/resources:ui_test_pak", |
312 ] | 313 ] |
313 | 314 |
314 data_deps = [ ":components_tests_pak" ] | 315 data_deps = [ ":components_tests_pak" ] |
315 | 316 |
316 if (is_android) { | 317 if (is_android) { |
317 isolate_file = "components_unittests.isolate" | 318 isolate_file = "components_unittests.isolate" |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
434 | 435 |
435 deps = [ | 436 deps = [ |
436 "//base", | 437 "//base", |
437 "//base/test:test_support_perf", | 438 "//base/test:test_support_perf", |
438 "//testing/gtest", | 439 "//testing/gtest", |
439 "//testing/perf", | 440 "//testing/perf", |
440 "//content/test:test_support", | 441 "//content/test:test_support", |
441 "//components/visitedlink/browser", | 442 "//components/visitedlink/browser", |
442 ] | 443 ] |
443 } | 444 } |
OLD | NEW |