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/autocomplete", | 11 "//components/autocomplete", |
12 "//components/autofill/content/browser", | 12 "//components/autofill/content/browser", |
13 "//components/autofill/content/common", | 13 "//components/autofill/content/common", |
14 "//components/autofill/content/renderer", | 14 "//components/autofill/content/renderer", |
| 15 "//components/bookmarks/browser", |
| 16 "//components/bookmarks/common", |
| 17 "//components/bookmarks/test", |
15 "//components/captive_portal", | 18 "//components/captive_portal", |
16 "//components/cloud_devices/common", | 19 "//components/cloud_devices/common", |
17 "//components/data_reduction_proxy/browser", | 20 "//components/data_reduction_proxy/browser", |
18 "//components/data_reduction_proxy/common", | 21 "//components/data_reduction_proxy/common", |
19 "//components/dom_distiller/core", | 22 "//components/dom_distiller/core", |
20 "//components/domain_reliability", | 23 "//components/domain_reliability", |
21 "//components/favicon_base", | 24 "//components/favicon_base", |
22 "//components/favicon/core", | 25 "//components/favicon/core", |
23 "//components/history/core/browser", | 26 "//components/history/core/browser", |
24 "//components/history/core/common", | 27 "//components/history/core/common", |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 "//components/translate/content/renderer", # Blocked on content. | 92 "//components/translate/content/renderer", # Blocked on content. |
90 "//components/usb_service", # Blocked on content. | 93 "//components/usb_service", # Blocked on content. |
91 "//components/user_prefs", # Blocked on content. | 94 "//components/user_prefs", # Blocked on content. |
92 "//components/visitedlink/browser", # Blocked on content. | 95 "//components/visitedlink/browser", # Blocked on content. |
93 "//components/visitedlink/common", # Blocked on content. | 96 "//components/visitedlink/common", # Blocked on content. |
94 "//components/visitedlink/renderer", # Blocked on blink | 97 "//components/visitedlink/renderer", # Blocked on blink |
95 "//components/web_modal", # Blocked on content. | 98 "//components/web_modal", # Blocked on content. |
96 ] | 99 ] |
97 } | 100 } |
98 } | 101 } |
OLD | NEW |