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

Side by Side Diff: components/BUILD.gn

Issue 498773005: Add some remoting targets to GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 3 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/BUILD.gn ('k') | components/metrics/BUILD.gn » ('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 = [
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 "//components/password_manager/core/browser", 57 "//components/password_manager/core/browser",
58 "//components/password_manager/core/common", 58 "//components/password_manager/core/common",
59 "//components/plugins/renderer", 59 "//components/plugins/renderer",
60 "//components/policy", 60 "//components/policy",
61 "//components/power", 61 "//components/power",
62 "//components/precache/core", 62 "//components/precache/core",
63 "//components/precache/content", 63 "//components/precache/content",
64 "//components/pref_registry", 64 "//components/pref_registry",
65 "//components/query_parser", 65 "//components/query_parser",
66 "//components/rappor", 66 "//components/rappor",
67 "//components/renderer_context_menu",
67 "//components/resources:components_resources", 68 "//components/resources:components_resources",
68 "//components/search", 69 "//components/search",
69 "//components/search_engines", 70 "//components/search_engines",
70 "//components/search_provider_logos", 71 "//components/search_provider_logos",
71 "//components/sessions", 72 "//components/sessions",
72 "//components/signin/core/browser", 73 "//components/signin/core/browser",
73 "//components/startup_metric_utils", 74 "//components/startup_metric_utils",
74 "//components/strings", 75 "//components/strings",
75 "//components/sync_driver", 76 "//components/sync_driver",
76 "//components/tracing", 77 "//components/tracing",
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 "//components/omnibox", # Should work, needs checking. 138 "//components/omnibox", # Should work, needs checking.
138 "//components/password_manager/content/browser", # Blocked on content. 139 "//components/password_manager/content/browser", # Blocked on content.
139 "//components/password_manager/core/browser", # Should work, needs checki ng. 140 "//components/password_manager/core/browser", # Should work, needs checki ng.
140 "//components/password_manager/core/common", # Should work, needs checkin g. 141 "//components/password_manager/core/common", # Should work, needs checkin g.
141 "//components/plugins/renderer", # Blocked on blink. 142 "//components/plugins/renderer", # Blocked on blink.
142 "//components/power", # Blocked on content. 143 "//components/power", # Blocked on content.
143 "//components/policy", # Blocked on content (indirectly via autofill). 144 "//components/policy", # Blocked on content (indirectly via autofill).
144 "//components/precache/content", # Blocked on content. 145 "//components/precache/content", # Blocked on content.
145 "//components/precache/core", # Should work, needs checking. 146 "//components/precache/core", # Should work, needs checking.
146 "//components/rappor", # Should work, needs checking. 147 "//components/rappor", # Should work, needs checking.
148 "//components/renderer_context_menu", # Blocked on content.
147 "//components/search_engines", # Should work, needs checking. 149 "//components/search_engines", # Should work, needs checking.
148 "//components/search_provider_logos", # Should work, needs checking. 150 "//components/search_provider_logos", # Should work, needs checking.
149 "//components/sessions", # Blocked on content. 151 "//components/sessions", # Blocked on content.
150 "//components/signin/core/browser", # Should work, needs checking. 152 "//components/signin/core/browser", # Should work, needs checking.
151 "//components/translate/content/browser", # Blocked on content. 153 "//components/translate/content/browser", # Blocked on content.
152 "//components/translate/content/common", # Blocked on content. 154 "//components/translate/content/common", # Blocked on content.
153 "//components/translate/content/renderer", # Blocked on content. 155 "//components/translate/content/renderer", # Blocked on content.
154 "//components/usb_service", # Blocked on content. 156 "//components/usb_service", # Blocked on content.
155 "//components/user_prefs", # Blocked on content. 157 "//components/user_prefs", # Blocked on content.
156 "//components/visitedlink/browser", # Blocked on content. 158 "//components/visitedlink/browser", # Blocked on content.
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 ] 202 ]
201 203
202 # TODO(GYP) need this target. 204 # TODO(GYP) need this target.
203 #'breakpad/app/crash_keys_win_unittest.cc', 205 #'breakpad/app/crash_keys_win_unittest.cc',
204 206
205 # Precache tests need these defines. 207 # Precache tests need these defines.
206 #configs += [ "//components/precache/core:precache_config" ] 208 #configs += [ "//components/precache/core:precache_config" ]
207 } 209 }
208 210
209 } 211 }
OLDNEW
« no previous file with comments | « chrome/browser/BUILD.gn ('k') | components/metrics/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698