Added more detailed result codes for CreateViewCommandBuffer.
[chromium-blink-merge.git] / components / BUILD.gn
blobb51f697640def4c185a4cf2f3d4f5a4b58ebeadc
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
3 # found in the LICENSE file.
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.
7 group("all_components") {
8   visibility = "//:*"  # Only for the root targets to bring in.
10   deps = [
11     "//components/autocomplete",
12     "//components/autofill/content/browser",
13     "//components/autofill/content/common",
14     "//components/autofill/content/renderer",
15     "//components/bookmarks/browser",
16     "//components/bookmarks/common",
17     "//components/bookmarks/test",
18     "//components/captive_portal",
19     "//components/cloud_devices/common",
20     "//components/data_reduction_proxy/browser",
21     "//components/data_reduction_proxy/common",
22     "//components/dom_distiller/core",
23     "//components/domain_reliability",
24     "//components/favicon_base",
25     "//components/favicon/core",
26     "//components/feedback",
27     "//components/history/core/browser",
28     "//components/history/core/common",
29     "//components/history/core/test",
30     "//components/json_schema",
31     "//components/language_usage_metrics",
32     "//components/metrics",
33     "//components/navigation_metrics",
34     "//components/onc",
35     "//components/os_crypt",
36     "//components/policy",
37     "//components/pref_registry",
38     "//components/query_parser",
39     "//components/rappor",
40     "//components/resources:components_resources",
41     "//components/startup_metric_utils",
42     "//components/strings",
43     "//components/tracing",
44     "//components/translate/content/browser",
45     "//components/translate/content/common",
46     "//components/translate/content/renderer",
47     "//components/translate/core/browser",
48     "//components/translate/core/common",
49     "//components/url_fixer",
50     "//components/url_matcher",
51     "//components/usb_service",
52     "//components/user_prefs",
53     "//components/variations",
54     "//components/visitedlink/browser",
55     "//components/visitedlink/common",
56     "//components/visitedlink/renderer",
57     "//components/web_modal",
58     "//components/webdata/common",
59   ]
61   if (is_win || is_mac) {
62     deps += [
63       "//components/wifi",
64     ]
65   }
67   if (!is_ios) {
68     deps += [ "//components/keyed_service/content" ]
69   }
71   if (is_android) {
72     deps -= [
73       "//components/autocomplete",  # Should work, needs checking.
74       "//components/autofill/content/browser",  # Blocked on content/blink.
75       "//components/autofill/content/common",  # Blocked on content.
76       "//components/autofill/content/renderer",  # Blocked on content/blink.
77       "//components/captive_portal",  # Should work, needs checking.
78       "//components/cloud_devices/common",  # Should work, needs checking.
79       "//components/data_reduction_proxy/browser",  # Should work, needs checking.
80       "//components/data_reduction_proxy/common",  # Should work, needs checking.
81       "//components/dom_distiller/core",  # Blocked on content.
82       "//components/domain_reliability",  # Blocked on content.
83       "//components/favicon_base",  # Should work, needs checking.
84       "//components/favicon/core",  # Blocked on keyed service.
85       "//components/feedback",  # Blocked on content.
86       "//components/history/core/browser",  # Should work, needs checking.
87       "//components/history/core/common",  # Should work, needs checking.
88       "//components/history/core/test",  # Should work, needs checking.
89       "//components/json_schema",  # Should work, needs checking.
90       "//components/keyed_service/content",  # Blocked on content.
91       "//components/policy",  # Blocked on content (indirectly via autofill).
92       "//components/rappor",  # Should work, needs checking.
93       "//components/translate/content/browser",  # Blocked on content.
94       "//components/translate/content/common",  # Blocked on content.
95       "//components/translate/content/renderer",  # Blocked on content.
96       "//components/usb_service",  # Blocked on content.
97       "//components/user_prefs",  # Blocked on content.
98       "//components/visitedlink/browser",  # Blocked on content.
99       "//components/visitedlink/common",  # Blocked on content.
100       "//components/visitedlink/renderer",  # Blocked on blink
101       "//components/web_modal",  # Blocked on content.
102     ]
103   }
105   if (!is_ios && !is_android) {
106     deps += [
107       "//components/storage_monitor",
108     ]
109   }