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", | 11 "//components/autofill/content/browser", |
12 "//components/autofill/content/common", | 12 "//components/autofill/content/common", |
13 "//components/autofill/content/renderer", | 13 "//components/autofill/content/renderer", |
14 "//components/cloud_devices/common", | 14 "//components/cloud_devices/common", |
15 "//components/dom_distiller/core", | 15 "//components/dom_distiller/core", |
16 "//components/favicon_base", | 16 "//components/favicon_base", |
| 17 "//components/feedback", |
17 "//components/json_schema", | 18 "//components/json_schema", |
18 "//components/language_usage_metrics", | 19 "//components/language_usage_metrics", |
19 "//components/metrics", | 20 "//components/metrics", |
20 "//components/navigation_metrics", | 21 "//components/navigation_metrics", |
21 "//components/onc", | 22 "//components/onc", |
22 "//components/os_crypt", | 23 "//components/os_crypt", |
23 "//components/policy", | 24 "//components/policy", |
24 "//components/pref_registry", | 25 "//components/pref_registry", |
25 "//components/query_parser", | 26 "//components/query_parser", |
26 "//components/resources:components_resources", | 27 "//components/resources:components_resources", |
(...skipping 20 matching lines...) Expand all Loading... |
47 deps += [ "//components/keyed_service/content" ] | 48 deps += [ "//components/keyed_service/content" ] |
48 } | 49 } |
49 | 50 |
50 if (is_android) { | 51 if (is_android) { |
51 deps -= [ | 52 deps -= [ |
52 "//components/autofill/content/browser", # Blocked on content/blink. | 53 "//components/autofill/content/browser", # Blocked on content/blink. |
53 "//components/autofill/content/common", # Blocked on content. | 54 "//components/autofill/content/common", # Blocked on content. |
54 "//components/autofill/content/renderer", # Blocked on content/blink. | 55 "//components/autofill/content/renderer", # Blocked on content/blink. |
55 "//components/cloud_devices/common", # Should work, needs checking. | 56 "//components/cloud_devices/common", # Should work, needs checking. |
56 "//components/dom_distiller/core", # Blocked on content. | 57 "//components/dom_distiller/core", # Blocked on content. |
| 58 "//components/feedback", # Blocked on content. |
57 "//components/json_schema", # Should work, needs checking. | 59 "//components/json_schema", # Should work, needs checking. |
58 "//components/keyed_service/content", # Blocked on content. | 60 "//components/keyed_service/content", # Blocked on content. |
59 "//components/policy", # Blocked on content (indirectly via autofill). | 61 "//components/policy", # Blocked on content (indirectly via autofill). |
60 "//components/user_prefs", # Blocked on content. | 62 "//components/user_prefs", # Blocked on content. |
61 "//components/visitedlink/browser", # Blocked on content. | 63 "//components/visitedlink/browser", # Blocked on content. |
62 "//components/visitedlink/common", # Blocked on content. | 64 "//components/visitedlink/common", # Blocked on content. |
63 "//components/visitedlink/renderer", # Blocked on blink | 65 "//components/visitedlink/renderer", # Blocked on blink |
64 ] | 66 ] |
65 } | 67 } |
66 } | 68 } |
OLD | NEW |