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

Side by Side Diff: components/BUILD.gn

Issue 413863002: Add breakpad component to GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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 | « breakpad/breakpad.gyp ('k') | components/breakpad.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/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/breakpad/app",
20 "//components/breakpad/browser",
19 "//components/captive_portal", 21 "//components/captive_portal",
20 "//components/cdm/browser", 22 "//components/cdm/browser",
21 "//components/cdm/common", 23 "//components/cdm/common",
22 "//components/cdm/renderer", 24 "//components/cdm/renderer",
23 "//components/cloud_devices/common", 25 "//components/cloud_devices/common",
24 "//components/component_updater", 26 "//components/component_updater",
25 "//components/data_reduction_proxy/browser", 27 "//components/data_reduction_proxy/browser",
26 "//components/data_reduction_proxy/common", 28 "//components/data_reduction_proxy/common",
27 "//components/dom_distiller/core", 29 "//components/dom_distiller/core",
28 "//components/domain_reliability", 30 "//components/domain_reliability",
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 if (is_ios) { 101 if (is_ios) {
100 deps -= [ "//components/keyed_service/content" ] 102 deps -= [ "//components/keyed_service/content" ]
101 } 103 }
102 104
103 if (is_android) { 105 if (is_android) {
104 deps -= [ 106 deps -= [
105 "//components/autocomplete", # Should work, needs checking. 107 "//components/autocomplete", # Should work, needs checking.
106 "//components/autofill/content/browser", # Blocked on content/blink. 108 "//components/autofill/content/browser", # Blocked on content/blink.
107 "//components/autofill/content/common", # Blocked on content. 109 "//components/autofill/content/common", # Blocked on content.
108 "//components/autofill/content/renderer", # Blocked on content/blink. 110 "//components/autofill/content/renderer", # Blocked on content/blink.
111 "//components/breakpad/app", # Should work, needs checking.
112 "//components/breakpad/browser", # Should work, needs checking.
109 "//components/captive_portal", # Should work, needs checking. 113 "//components/captive_portal", # Should work, needs checking.
110 "//components/cloud_devices/common", # Should work, needs checking. 114 "//components/cloud_devices/common", # Should work, needs checking.
111 "//components/cdm/browser", # Blocked on content. 115 "//components/cdm/browser", # Blocked on content.
112 "//components/cdm/common", # Blocked on content. 116 "//components/cdm/common", # Blocked on content.
113 "//components/cdm/renderer", # Blocked on content. 117 "//components/cdm/renderer", # Blocked on content.
114 "//components/data_reduction_proxy/browser", # Should work, needs checkin g. 118 "//components/data_reduction_proxy/browser", # Should work, needs checkin g.
115 "//components/data_reduction_proxy/common", # Should work, needs checking . 119 "//components/data_reduction_proxy/common", # Should work, needs checking .
116 "//components/dom_distiller/core", # Blocked on content. 120 "//components/dom_distiller/core", # Blocked on content.
117 "//components/domain_reliability", # Blocked on content. 121 "//components/domain_reliability", # Blocked on content.
118 "//components/favicon_base", # Should work, needs checking. 122 "//components/favicon_base", # Should work, needs checking.
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 ] 195 ]
192 196
193 # TODO(GYP) need this target. 197 # TODO(GYP) need this target.
194 #'breakpad/app/crash_keys_win_unittest.cc', 198 #'breakpad/app/crash_keys_win_unittest.cc',
195 199
196 # Precache tests need these defines. 200 # Precache tests need these defines.
197 #configs += [ "//components/precache/core:precache_config" ] 201 #configs += [ "//components/precache/core:precache_config" ]
198 } 202 }
199 203
200 } 204 }
OLDNEW
« no previous file with comments | « breakpad/breakpad.gyp ('k') | components/breakpad.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698