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

Side by Side Diff: components/BUILD.gn

Issue 485893007: Rename components/breakpad to components/crash. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase 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
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/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/breakpad/app",
19 "//components/breakpad/browser",
20 "//components/captive_portal", 18 "//components/captive_portal",
21 "//components/cdm/browser", 19 "//components/cdm/browser",
22 "//components/cdm/common", 20 "//components/cdm/common",
23 "//components/cdm/renderer", 21 "//components/cdm/renderer",
24 "//components/cloud_devices/common", 22 "//components/cloud_devices/common",
25 "//components/component_updater", 23 "//components/component_updater",
24 "//components/crash/app",
25 "//components/crash/browser",
26 "//components/crx_file", 26 "//components/crx_file",
27 "//components/data_reduction_proxy/browser", 27 "//components/data_reduction_proxy/browser",
28 "//components/data_reduction_proxy/common", 28 "//components/data_reduction_proxy/common",
29 "//components/dom_distiller/core", 29 "//components/dom_distiller/core",
30 "//components/domain_reliability", 30 "//components/domain_reliability",
31 "//components/enhanced_bookmarks", 31 "//components/enhanced_bookmarks",
32 "//components/favicon/core", 32 "//components/favicon/core",
33 "//components/favicon_base", 33 "//components/favicon_base",
34 "//components/feedback", 34 "//components/feedback",
35 "//components/gcm_driver", 35 "//components/gcm_driver",
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 102
103 if (is_ios) { 103 if (is_ios) {
104 deps -= [ "//components/keyed_service/content" ] 104 deps -= [ "//components/keyed_service/content" ]
105 } 105 }
106 106
107 if (is_android) { 107 if (is_android) {
108 deps -= [ 108 deps -= [
109 "//components/autofill/content/browser", # Blocked on content/blink. 109 "//components/autofill/content/browser", # Blocked on content/blink.
110 "//components/autofill/content/common", # Blocked on content. 110 "//components/autofill/content/common", # Blocked on content.
111 "//components/autofill/content/renderer", # Blocked on content/blink. 111 "//components/autofill/content/renderer", # Blocked on content/blink.
112 "//components/breakpad/app", # Should work, needs checking. 112 "//components/crash/app", # Should work, needs checking.
113 "//components/breakpad/browser", # Should work, needs checking. 113 "//components/crash/browser", # Should work, needs checking.
114 "//components/captive_portal", # Should work, needs checking. 114 "//components/captive_portal", # Should work, needs checking.
115 "//components/cloud_devices/common", # Should work, needs checking. 115 "//components/cloud_devices/common", # Should work, needs checking.
116 "//components/cdm/browser", # Blocked on content. 116 "//components/cdm/browser", # Blocked on content.
117 "//components/cdm/common", # Blocked on content. 117 "//components/cdm/common", # Blocked on content.
118 "//components/cdm/renderer", # Blocked on content. 118 "//components/cdm/renderer", # Blocked on content.
119 "//components/data_reduction_proxy/browser", # Should work, needs checkin g. 119 "//components/data_reduction_proxy/browser", # Should work, needs checkin g.
120 "//components/data_reduction_proxy/common", # Should work, needs checking . 120 "//components/data_reduction_proxy/common", # Should work, needs checking .
121 "//components/dom_distiller/core", # Blocked on content. 121 "//components/dom_distiller/core", # Blocked on content.
122 "//components/domain_reliability", # Blocked on content. 122 "//components/domain_reliability", # Blocked on content.
123 "//components/favicon_base", # Should work, needs checking. 123 "//components/favicon_base", # Should work, needs checking.
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 ] 200 ]
201 201
202 # TODO(GYP) need this target. 202 # TODO(GYP) need this target.
203 #'breakpad/app/crash_keys_win_unittest.cc', 203 #'breakpad/app/crash_keys_win_unittest.cc',
204 204
205 # Precache tests need these defines. 205 # Precache tests need these defines.
206 #configs += [ "//components/precache/core:precache_config" ] 206 #configs += [ "//components/precache/core:precache_config" ]
207 } 207 }
208 208
209 } 209 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698