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 # Collection of all components. You wouldn't link to this, but this is rather | 5 # Collection of all components. You wouldn't link to this, but this is rather |
6 # to reference the files so they can be compiled by the build system. | 6 # to reference the files so they can be compiled by the build system. |
7 group("all_components") { | 7 group("all_components") { |
8 visibility = "//:*" # Only for the root targets to bring in. | 8 visibility = "//:*" # Only for the root targets to bring in. |
9 | 9 |
10 deps = [ | 10 deps = [ |
(...skipping 20 matching lines...) Expand all Loading... |
31 "//components/language_usage_metrics", | 31 "//components/language_usage_metrics", |
32 "//components/metrics", | 32 "//components/metrics", |
33 "//components/navigation_metrics", | 33 "//components/navigation_metrics", |
34 "//components/onc", | 34 "//components/onc", |
35 "//components/os_crypt", | 35 "//components/os_crypt", |
36 "//components/policy", | 36 "//components/policy", |
37 "//components/pref_registry", | 37 "//components/pref_registry", |
38 "//components/query_parser", | 38 "//components/query_parser", |
39 "//components/rappor", | 39 "//components/rappor", |
40 "//components/resources:components_resources", | 40 "//components/resources:components_resources", |
| 41 "//components/search", |
41 "//components/startup_metric_utils", | 42 "//components/startup_metric_utils", |
42 "//components/strings", | 43 "//components/strings", |
43 "//components/tracing", | 44 "//components/tracing", |
44 "//components/translate/content/browser", | 45 "//components/translate/content/browser", |
45 "//components/translate/content/common", | 46 "//components/translate/content/common", |
46 "//components/translate/content/renderer", | 47 "//components/translate/content/renderer", |
47 "//components/translate/core/browser", | 48 "//components/translate/core/browser", |
48 "//components/translate/core/common", | 49 "//components/translate/core/common", |
49 "//components/url_fixer", | 50 "//components/url_fixer", |
50 "//components/url_matcher", | 51 "//components/url_matcher", |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 "//components/web_modal", # Blocked on content. | 102 "//components/web_modal", # Blocked on content. |
102 ] | 103 ] |
103 } | 104 } |
104 | 105 |
105 if (!is_ios && !is_android) { | 106 if (!is_ios && !is_android) { |
106 deps += [ | 107 deps += [ |
107 "//components/storage_monitor", | 108 "//components/storage_monitor", |
108 ] | 109 ] |
109 } | 110 } |
110 } | 111 } |
OLD | NEW |