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

Side by Side Diff: components/BUILD.gn

Issue 403103005: components: Add GN Build files for component_updater and user_manager. (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 | « no previous file | components/component_updater/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 = [
11 "//components/auto_login_parser", 11 "//components/auto_login_parser",
12 "//components/autocomplete", 12 "//components/autocomplete",
13 "//components/autofill/content/browser", 13 "//components/autofill/content/browser",
14 "//components/autofill/content/common", 14 "//components/autofill/content/common",
15 "//components/autofill/content/renderer", 15 "//components/autofill/content/renderer",
16 "//components/bookmarks/browser", 16 "//components/bookmarks/browser",
17 "//components/bookmarks/common", 17 "//components/bookmarks/common",
18 "//components/bookmarks/test", 18 "//components/bookmarks/test",
19 "//components/captive_portal", 19 "//components/captive_portal",
20 "//components/cloud_devices/common", 20 "//components/cloud_devices/common",
21 "//components/component_updater",
21 "//components/data_reduction_proxy/browser", 22 "//components/data_reduction_proxy/browser",
22 "//components/data_reduction_proxy/common", 23 "//components/data_reduction_proxy/common",
23 "//components/dom_distiller/core", 24 "//components/dom_distiller/core",
24 "//components/domain_reliability", 25 "//components/domain_reliability",
25 "//components/enhanced_bookmarks", 26 "//components/enhanced_bookmarks",
26 "//components/favicon/core", 27 "//components/favicon/core",
27 "//components/favicon_base", 28 "//components/favicon_base",
28 "//components/feedback", 29 "//components/feedback",
29 "//components/gcm_driver", 30 "//components/gcm_driver",
30 "//components/google/core/browser", 31 "//components/google/core/browser",
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 "//components/strings", 64 "//components/strings",
64 "//components/tracing", 65 "//components/tracing",
65 "//components/translate/content/browser", 66 "//components/translate/content/browser",
66 "//components/translate/content/common", 67 "//components/translate/content/common",
67 "//components/translate/content/renderer", 68 "//components/translate/content/renderer",
68 "//components/translate/core/browser", 69 "//components/translate/core/browser",
69 "//components/translate/core/common", 70 "//components/translate/core/common",
70 "//components/url_fixer", 71 "//components/url_fixer",
71 "//components/url_matcher", 72 "//components/url_matcher",
72 "//components/usb_service", 73 "//components/usb_service",
74 "//components/user_manager",
73 "//components/user_prefs", 75 "//components/user_prefs",
74 "//components/variations", 76 "//components/variations",
75 "//components/visitedlink/browser", 77 "//components/visitedlink/browser",
76 "//components/visitedlink/common", 78 "//components/visitedlink/common",
77 "//components/visitedlink/renderer", 79 "//components/visitedlink/renderer",
78 "//components/web_modal", 80 "//components/web_modal",
79 "//components/webdata/common", 81 "//components/webdata/common",
80 ] 82 ]
81 83
82 if (is_win || is_mac) { 84 if (is_win || is_mac) {
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 "//components/autofill/core/browser:unit_tests", 170 "//components/autofill/core/browser:unit_tests",
169 "//components/autofill/core/common:unit_tests", 171 "//components/autofill/core/common:unit_tests",
170 ] 172 ]
171 173
172 174
173 # Precache tests need these defines. 175 # Precache tests need these defines.
174 #configs += [ "//components/precache/core:precache_config" ] 176 #configs += [ "//components/precache/core:precache_config" ]
175 } 177 }
176 178
177 } 179 }
OLDNEW
« no previous file with comments | « no previous file | components/component_updater/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698