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 if (is_android) { | 10 if (is_android) { |
(...skipping 21 matching lines...) Expand all Loading... |
32 | 32 |
33 # Add only ":unit_tests" dependencies here. If your tests have dependencies | 33 # Add only ":unit_tests" dependencies here. If your tests have dependencies |
34 # (this would at least include the component itself), they should be on the | 34 # (this would at least include the component itself), they should be on the |
35 # test source set and not here. | 35 # test source set and not here. |
36 | 36 |
37 deps = [ | 37 deps = [ |
38 "//base", | 38 "//base", |
39 "//base/test:test_support", | 39 "//base/test:test_support", |
40 "//components/bookmarks/browser:unit_tests", | 40 "//components/bookmarks/browser:unit_tests", |
41 "//components/bookmarks/managed:unit_tests", | 41 "//components/bookmarks/managed:unit_tests", |
| 42 "//components/client_update_protocol:unit_tests", |
42 "//components/content_settings/core/browser:unit_tests", | 43 "//components/content_settings/core/browser:unit_tests", |
43 "//components/content_settings/core/common", | 44 "//components/content_settings/core/common", |
44 "//components/content_settings/core/common:unit_tests", | 45 "//components/content_settings/core/common:unit_tests", |
45 "//components/data_usage/core:unit_tests", | 46 "//components/data_usage/core:unit_tests", |
46 "//components/dom_distiller/core:unit_tests", | 47 "//components/dom_distiller/core:unit_tests", |
47 "//components/flags_ui:unit_tests", | 48 "//components/flags_ui:unit_tests", |
48 "//components/google/core/browser:unit_tests", | 49 "//components/google/core/browser:unit_tests", |
49 "//components/keyed_service/core:unit_tests", | 50 "//components/keyed_service/core:unit_tests", |
50 "//components/leveldb_proto:unit_tests", | 51 "//components/leveldb_proto:unit_tests", |
51 "//components/metrics:unit_tests", | 52 "//components/metrics:unit_tests", |
(...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
435 if (!is_ios) { | 436 if (!is_ios) { |
436 deps += [ | 437 deps += [ |
437 "//base", | 438 "//base", |
438 "//base/test:test_support_perf", | 439 "//base/test:test_support_perf", |
439 "//components/scheduler", | 440 "//components/scheduler", |
440 "//components/visitedlink/browser", | 441 "//components/visitedlink/browser", |
441 "//content/test:test_support", | 442 "//content/test:test_support", |
442 ] | 443 ] |
443 } | 444 } |
444 } | 445 } |
OLD | NEW |