1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# Collection of all components. You wouldn't link to this, but this is rather
# to reference the files so they can be compiled by the build system.
group("all_components") {
visibility = "//:*" # Only for the root targets to bring in.
deps = [
"//components/autocomplete",
"//components/autofill/content/browser",
"//components/autofill/content/common",
"//components/autofill/content/renderer",
"//components/bookmarks/browser",
"//components/bookmarks/common",
"//components/bookmarks/test",
"//components/captive_portal",
"//components/cloud_devices/common",
"//components/data_reduction_proxy/browser",
"//components/data_reduction_proxy/common",
"//components/dom_distiller/core",
"//components/domain_reliability",
"//components/favicon_base",
"//components/favicon/core",
"//components/feedback",
"//components/history/core/browser",
"//components/history/core/common",
"//components/history/core/test",
"//components/json_schema",
"//components/language_usage_metrics",
"//components/metrics",
"//components/navigation_metrics",
"//components/onc",
"//components/os_crypt",
"//components/policy",
"//components/pref_registry",
"//components/query_parser",
"//components/rappor",
"//components/resources:components_resources",
"//components/startup_metric_utils",
"//components/strings",
"//components/tracing",
"//components/translate/content/browser",
"//components/translate/content/common",
"//components/translate/content/renderer",
"//components/translate/core/browser",
"//components/translate/core/common",
"//components/url_fixer",
"//components/url_matcher",
"//components/usb_service",
"//components/user_prefs",
"//components/variations",
"//components/visitedlink/browser",
"//components/visitedlink/common",
"//components/visitedlink/renderer",
"//components/web_modal",
"//components/webdata/common",
]
if (is_win || is_mac) {
deps += [
"//components/wifi",
]
}
if (!is_ios) {
deps += [ "//components/keyed_service/content" ]
}
if (is_android) {
deps -= [
"//components/autocomplete", # Should work, needs checking.
"//components/autofill/content/browser", # Blocked on content/blink.
"//components/autofill/content/common", # Blocked on content.
"//components/autofill/content/renderer", # Blocked on content/blink.
"//components/captive_portal", # Should work, needs checking.
"//components/cloud_devices/common", # Should work, needs checking.
"//components/data_reduction_proxy/browser", # Should work, needs checking.
"//components/data_reduction_proxy/common", # Should work, needs checking.
"//components/dom_distiller/core", # Blocked on content.
"//components/domain_reliability", # Blocked on content.
"//components/favicon_base", # Should work, needs checking.
"//components/favicon/core", # Blocked on keyed service.
"//components/feedback", # Blocked on content.
"//components/history/core/browser", # Should work, needs checking.
"//components/history/core/common", # Should work, needs checking.
"//components/history/core/test", # Should work, needs checking.
"//components/json_schema", # Should work, needs checking.
"//components/keyed_service/content", # Blocked on content.
"//components/policy", # Blocked on content (indirectly via autofill).
"//components/rappor", # Should work, needs checking.
"//components/translate/content/browser", # Blocked on content.
"//components/translate/content/common", # Blocked on content.
"//components/translate/content/renderer", # Blocked on content.
"//components/usb_service", # Blocked on content.
"//components/user_prefs", # Blocked on content.
"//components/visitedlink/browser", # Blocked on content.
"//components/visitedlink/common", # Blocked on content.
"//components/visitedlink/renderer", # Blocked on blink
"//components/web_modal", # Blocked on content.
]
}
}
|