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 17 matching lines...) Expand all Loading... |
28 "//components/strings", | 28 "//components/strings", |
29 "//components/tracing", | 29 "//components/tracing", |
30 "//components/translate:translate_core_browser", | 30 "//components/translate:translate_core_browser", |
31 "//components/translate:translate_core_common", | 31 "//components/translate:translate_core_common", |
32 "//components/url_matcher", | 32 "//components/url_matcher", |
33 "//components/user_prefs", | 33 "//components/user_prefs", |
34 "//components/variations", | 34 "//components/variations", |
35 "//components/visitedlink/browser", | 35 "//components/visitedlink/browser", |
36 "//components/visitedlink/common", | 36 "//components/visitedlink/common", |
37 "//components/visitedlink/renderer", # Blocked on blink | 37 "//components/visitedlink/renderer", # Blocked on blink |
| 38 "//components/webdata/common", |
38 ] | 39 ] |
39 | 40 |
40 if (is_win || is_mac) { | 41 if (is_win || is_mac) { |
41 deps += [ | 42 deps += [ |
42 "//components/wifi", | 43 "//components/wifi", |
43 ] | 44 ] |
44 } | 45 } |
45 | 46 |
46 if (!is_ios) { | 47 if (!is_ios) { |
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. |
57 "//components/json_schema", # Should work, needs checking. | 58 "//components/json_schema", # Should work, needs checking. |
58 "//components/keyed_service/content", # Blocked on content. | 59 "//components/keyed_service/content", # Blocked on content. |
59 "//components/policy", # Blocked on content (indirectly via autofill). | 60 "//components/policy", # Blocked on content (indirectly via autofill). |
60 "//components/user_prefs", # Blocked on content. | 61 "//components/user_prefs", # Blocked on content. |
61 "//components/visitedlink/browser", # Blocked on content. | 62 "//components/visitedlink/browser", # Blocked on content. |
62 "//components/visitedlink/common", # Blocked on content. | 63 "//components/visitedlink/common", # Blocked on content. |
63 "//components/visitedlink/renderer", # Blocked on blink | 64 "//components/visitedlink/renderer", # Blocked on blink |
64 ] | 65 ] |
65 } | 66 } |
66 } | 67 } |
OLD | NEW |