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 = [ |
| 11 "//components/autofill/content/browser", |
| 12 "//components/autofill/content/common", |
| 13 "//components/autofill/content/renderer", |
11 "//components/cloud_devices/common", | 14 "//components/cloud_devices/common", |
12 "//components/dom_distiller/core", | 15 "//components/dom_distiller/core", |
13 "//components/favicon_base", | 16 "//components/favicon_base", |
14 "//components/json_schema", | 17 "//components/json_schema", |
15 "//components/language_usage_metrics", | 18 "//components/language_usage_metrics", |
16 "//components/metrics", | 19 "//components/metrics", |
17 "//components/navigation_metrics", | 20 "//components/navigation_metrics", |
18 "//components/onc", | 21 "//components/onc", |
19 "//components/os_crypt", | 22 "//components/os_crypt", |
| 23 "//components/policy", |
20 "//components/pref_registry", | 24 "//components/pref_registry", |
21 "//components/query_parser", | 25 "//components/query_parser", |
22 "//components/resources:components_resources", | 26 "//components/resources:components_resources", |
23 "//components/startup_metric_utils", | 27 "//components/startup_metric_utils", |
24 "//components/strings", | 28 "//components/strings", |
25 "//components/tracing", | 29 "//components/tracing", |
26 "//components/translate:translate_core_browser", | 30 "//components/translate:translate_core_browser", |
27 "//components/translate:translate_core_common", | 31 "//components/translate:translate_core_common", |
28 "//components/url_matcher", | 32 "//components/url_matcher", |
29 "//components/user_prefs", | 33 "//components/user_prefs", |
| 34 "//components/variations", |
30 "//components/visitedlink/browser", | 35 "//components/visitedlink/browser", |
31 "//components/visitedlink/common", | 36 "//components/visitedlink/common", |
32 "//components/visitedlink/renderer", # Blocked on blink | 37 "//components/visitedlink/renderer", # Blocked on blink |
33 ] | 38 ] |
34 | 39 |
35 if (!is_ios) { | 40 if (!is_ios) { |
36 deps += [ "//components/keyed_service/content" ] | 41 deps += [ "//components/keyed_service/content" ] |
37 } | 42 } |
38 | 43 |
39 if (is_android) { | 44 if (is_android) { |
40 deps -= [ | 45 deps -= [ |
| 46 "//components/autofill/content/browser", # Blocked on content/blink. |
| 47 "//components/autofill/content/common", # Blocked on content. |
| 48 "//components/autofill/content/renderer", # Blocked on content/blink. |
41 "//components/cloud_devices/common", # Should work, needs checking. | 49 "//components/cloud_devices/common", # Should work, needs checking. |
42 "//components/dom_distiller/core", # Blocked on content. | 50 "//components/dom_distiller/core", # Blocked on content. |
43 "//components/json_schema", # Should work, needs checking. | 51 "//components/json_schema", # Should work, needs checking. |
44 "//components/keyed_service/content", # Blocked on content. | 52 "//components/keyed_service/content", # Blocked on content. |
| 53 "//components/policy", # Blocked on content (indirectly via autofill). |
45 "//components/user_prefs", # Blocked on content. | 54 "//components/user_prefs", # Blocked on content. |
46 "//components/visitedlink/browser", # Blocked on content. | 55 "//components/visitedlink/browser", # Blocked on content. |
47 "//components/visitedlink/common", # Blocked on content. | 56 "//components/visitedlink/common", # Blocked on content. |
48 "//components/visitedlink/renderer", # Blocked on blink | 57 "//components/visitedlink/renderer", # Blocked on blink |
49 ] | 58 ] |
50 } | 59 } |
51 } | 60 } |
OLD | NEW |