Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(193)

Side by Side Diff: components/BUILD.gn

Issue 394033002: Add gcm, nfc and bluetooth to GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/ui/BUILD.gn ('k') | components/gcm_driver.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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", 15 "//components/bookmarks/browser",
16 "//components/bookmarks/common", 16 "//components/bookmarks/common",
17 "//components/bookmarks/test", 17 "//components/bookmarks/test",
18 "//components/captive_portal", 18 "//components/captive_portal",
19 "//components/cloud_devices/common", 19 "//components/cloud_devices/common",
20 "//components/data_reduction_proxy/browser", 20 "//components/data_reduction_proxy/browser",
21 "//components/data_reduction_proxy/common", 21 "//components/data_reduction_proxy/common",
22 "//components/dom_distiller/core", 22 "//components/dom_distiller/core",
23 "//components/domain_reliability", 23 "//components/domain_reliability",
24 "//components/enhanced_bookmarks", 24 "//components/enhanced_bookmarks",
25 "//components/favicon/core", 25 "//components/favicon/core",
26 "//components/favicon_base", 26 "//components/favicon_base",
27 "//components/feedback", 27 "//components/feedback",
28 "//components/gcm_driver",
28 "//components/history/core/browser", 29 "//components/history/core/browser",
29 "//components/history/core/common", 30 "//components/history/core/common",
30 "//components/history/core/test", 31 "//components/history/core/test",
31 "//components/json_schema", 32 "//components/json_schema",
32 "//components/language_usage_metrics", 33 "//components/language_usage_metrics",
33 "//components/leveldb_proto", 34 "//components/leveldb_proto",
34 "//components/metrics", 35 "//components/metrics",
35 "//components/navigation_metrics", 36 "//components/navigation_metrics",
36 "//components/omaha_query_params", 37 "//components/omaha_query_params",
37 "//components/onc", 38 "//components/onc",
38 "//components/os_crypt", 39 "//components/os_crypt",
39 "//components/policy", 40 "//components/policy",
40 "//components/precache/core", 41 "//components/precache/core",
41 "//components/precache/content", 42 "//components/precache/content",
42 "//components/pref_registry", 43 "//components/pref_registry",
43 "//components/query_parser", 44 "//components/query_parser",
44 "//components/rappor", 45 "//components/rappor",
45 "//components/resources:components_resources", 46 "//components/resources:components_resources",
46 "//components/search_engines", 47 "//components/search_engines",
48 "//components/signin/core/browser",
47 "//components/startup_metric_utils", 49 "//components/startup_metric_utils",
48 "//components/strings", 50 "//components/strings",
49 "//components/tracing", 51 "//components/tracing",
50 "//components/translate/content/browser", 52 "//components/translate/content/browser",
51 "//components/translate/content/common", 53 "//components/translate/content/common",
52 "//components/translate/content/renderer", 54 "//components/translate/content/renderer",
53 "//components/translate/core/browser", 55 "//components/translate/core/browser",
54 "//components/translate/core/common", 56 "//components/translate/core/common",
55 "//components/url_fixer", 57 "//components/url_fixer",
56 "//components/url_matcher", 58 "//components/url_matcher",
(...skipping 25 matching lines...) Expand all
82 "//components/autofill/content/renderer", # Blocked on content/blink. 84 "//components/autofill/content/renderer", # Blocked on content/blink.
83 "//components/captive_portal", # Should work, needs checking. 85 "//components/captive_portal", # Should work, needs checking.
84 "//components/cloud_devices/common", # Should work, needs checking. 86 "//components/cloud_devices/common", # Should work, needs checking.
85 "//components/data_reduction_proxy/browser", # Should work, needs checkin g. 87 "//components/data_reduction_proxy/browser", # Should work, needs checkin g.
86 "//components/data_reduction_proxy/common", # Should work, needs checking . 88 "//components/data_reduction_proxy/common", # Should work, needs checking .
87 "//components/dom_distiller/core", # Blocked on content. 89 "//components/dom_distiller/core", # Blocked on content.
88 "//components/domain_reliability", # Blocked on content. 90 "//components/domain_reliability", # Blocked on content.
89 "//components/favicon_base", # Should work, needs checking. 91 "//components/favicon_base", # Should work, needs checking.
90 "//components/favicon/core", # Blocked on keyed service. 92 "//components/favicon/core", # Blocked on keyed service.
91 "//components/feedback", # Blocked on content. 93 "//components/feedback", # Blocked on content.
94 "//components/gcm_driver", # Should work, needs checking.
92 "//components/history/core/browser", # Should work, needs checking. 95 "//components/history/core/browser", # Should work, needs checking.
93 "//components/history/core/common", # Should work, needs checking. 96 "//components/history/core/common", # Should work, needs checking.
94 "//components/history/core/test", # Should work, needs checking. 97 "//components/history/core/test", # Should work, needs checking.
95 "//components/json_schema", # Should work, needs checking. 98 "//components/json_schema", # Should work, needs checking.
96 "//components/keyed_service/content", # Blocked on content. 99 "//components/keyed_service/content", # Blocked on content.
97 "//components/precache/core", # Should work, needs checking. 100 "//components/precache/core", # Should work, needs checking.
98 "//components/precache/content", # Blocked on content. 101 "//components/precache/content", # Blocked on content.
99 "//components/policy", # Blocked on content (indirectly via autofill). 102 "//components/policy", # Blocked on content (indirectly via autofill).
100 "//components/rappor", # Should work, needs checking. 103 "//components/rappor", # Should work, needs checking.
101 "//components/search_engines", # Should work, needs checking. 104 "//components/search_engines", # Should work, needs checking.
105 "//components/signin/core/browser", # Should work, needs checking.
102 "//components/translate/content/browser", # Blocked on content. 106 "//components/translate/content/browser", # Blocked on content.
103 "//components/translate/content/common", # Blocked on content. 107 "//components/translate/content/common", # Blocked on content.
104 "//components/translate/content/renderer", # Blocked on content. 108 "//components/translate/content/renderer", # Blocked on content.
105 "//components/usb_service", # Blocked on content. 109 "//components/usb_service", # Blocked on content.
106 "//components/user_prefs", # Blocked on content. 110 "//components/user_prefs", # Blocked on content.
107 "//components/visitedlink/browser", # Blocked on content. 111 "//components/visitedlink/browser", # Blocked on content.
108 "//components/visitedlink/common", # Blocked on content. 112 "//components/visitedlink/common", # Blocked on content.
109 "//components/visitedlink/renderer", # Blocked on blink 113 "//components/visitedlink/renderer", # Blocked on blink
110 "//components/web_modal", # Blocked on content. 114 "//components/web_modal", # Blocked on content.
111 ] 115 ]
112 } 116 }
113 117
114 if (!is_ios && !is_android) { 118 if (!is_ios && !is_android) {
115 deps += [ 119 deps += [
116 "//components/storage_monitor", 120 "//components/storage_monitor",
117 ] 121 ]
118 } 122 }
119 } 123 }
120 124
121 # TODO(GYP) components_unittests 125 # TODO(GYP) components_unittests
122 #test("components_unittests") { 126 #test("components_unittests") {
123 ## # Precache tests need these defines. 127 ## # Precache tests need these defines.
124 # configs += [ "//components/precache/core:precache_config" ] 128 # configs += [ "//components/precache/core:precache_config" ]
125 #} 129 #}
OLDNEW
« no previous file with comments | « chrome/browser/ui/BUILD.gn ('k') | components/gcm_driver.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698