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/domain_reliability", | 16 "//components/domain_reliability", |
16 "//components/dom_distiller/core", | |
17 "//components/favicon_base", | 17 "//components/favicon_base", |
18 "//components/favicon/core", | 18 "//components/favicon/core", |
19 "//components/feedback", | |
20 "//components/history/core/browser", | 19 "//components/history/core/browser", |
21 "//components/history/core/common", | 20 "//components/history/core/common", |
22 "//components/history/core/test", | 21 "//components/history/core/test", |
23 "//components/json_schema", | 22 "//components/json_schema", |
24 "//components/language_usage_metrics", | 23 "//components/language_usage_metrics", |
25 "//components/metrics", | 24 "//components/metrics", |
26 "//components/navigation_metrics", | 25 "//components/navigation_metrics", |
27 "//components/onc", | 26 "//components/onc", |
28 "//components/os_crypt", | 27 "//components/os_crypt", |
29 "//components/policy", | 28 "//components/policy", |
(...skipping 27 matching lines...) Expand all Loading... |
57 if (is_android) { | 56 if (is_android) { |
58 deps -= [ | 57 deps -= [ |
59 "//components/autofill/content/browser", # Blocked on content/blink. | 58 "//components/autofill/content/browser", # Blocked on content/blink. |
60 "//components/autofill/content/common", # Blocked on content. | 59 "//components/autofill/content/common", # Blocked on content. |
61 "//components/autofill/content/renderer", # Blocked on content/blink. | 60 "//components/autofill/content/renderer", # Blocked on content/blink. |
62 "//components/cloud_devices/common", # Should work, needs checking. | 61 "//components/cloud_devices/common", # Should work, needs checking. |
63 "//components/dom_distiller/core", # Blocked on content. | 62 "//components/dom_distiller/core", # Blocked on content. |
64 "//components/domain_reliability", # Blocked on content. | 63 "//components/domain_reliability", # Blocked on content. |
65 "//components/favicon_base", # Should work, needs checking. | 64 "//components/favicon_base", # Should work, needs checking. |
66 "//components/favicon/core", # Blocked on keyed service. | 65 "//components/favicon/core", # Blocked on keyed service. |
67 "//components/feedback", # Blocked on content. | |
68 "//components/history/core/browser", # Should work, needs checking. | 66 "//components/history/core/browser", # Should work, needs checking. |
69 "//components/history/core/common", # Should work, needs checking. | 67 "//components/history/core/common", # Should work, needs checking. |
70 "//components/history/core/test", # Should work, needs checking. | 68 "//components/history/core/test", # Should work, needs checking. |
71 "//components/json_schema", # Should work, needs checking. | 69 "//components/json_schema", # Should work, needs checking. |
72 "//components/keyed_service/content", # Blocked on content. | 70 "//components/keyed_service/content", # Blocked on content. |
73 "//components/policy", # Blocked on content (indirectly via autofill). | 71 "//components/policy", # Blocked on content (indirectly via autofill). |
74 "//components/user_prefs", # Blocked on content. | 72 "//components/user_prefs", # Blocked on content. |
75 "//components/visitedlink/browser", # Blocked on content. | 73 "//components/visitedlink/browser", # Blocked on content. |
76 "//components/visitedlink/common", # Blocked on content. | 74 "//components/visitedlink/common", # Blocked on content. |
77 "//components/visitedlink/renderer", # Blocked on blink | 75 "//components/visitedlink/renderer", # Blocked on blink |
78 ] | 76 ] |
79 } | 77 } |
80 } | 78 } |
OLD | NEW |