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

Side by Side Diff: components/BUILD.gn

Issue 497363004: Merge components/usb_service into device/usb. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Hide //device/usb on mobile platforms. 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
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 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 6
7 # Collection of all components. You wouldn't link to this, but this is rather 7 # Collection of all components. You wouldn't link to this, but this is rather
8 # to reference the files so they can be compiled by the build system. 8 # to reference the files so they can be compiled by the build system.
9 group("all_components") { 9 group("all_components") {
10 visibility = "//:*" # Only for the root targets to bring in. 10 visibility = "//:*" # Only for the root targets to bring in.
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 "//components/strings", 80 "//components/strings",
81 "//components/sync_driver", 81 "//components/sync_driver",
82 "//components/tracing", 82 "//components/tracing",
83 "//components/translate/content/browser", 83 "//components/translate/content/browser",
84 "//components/translate/content/common", 84 "//components/translate/content/common",
85 "//components/translate/content/renderer", 85 "//components/translate/content/renderer",
86 "//components/translate/core/browser", 86 "//components/translate/core/browser",
87 "//components/translate/core/common", 87 "//components/translate/core/common",
88 "//components/url_fixer", 88 "//components/url_fixer",
89 "//components/url_matcher", 89 "//components/url_matcher",
90 "//components/usb_service",
91 "//components/user_manager", 90 "//components/user_manager",
92 "//components/user_prefs", 91 "//components/user_prefs",
93 "//components/variations", 92 "//components/variations",
94 "//components/visitedlink/browser", 93 "//components/visitedlink/browser",
95 "//components/visitedlink/common", 94 "//components/visitedlink/common",
96 "//components/visitedlink/renderer", 95 "//components/visitedlink/renderer",
97 "//components/web_modal", 96 "//components/web_modal",
98 "//components/webdata/common", 97 "//components/webdata/common",
99 "//components/wifi", 98 "//components/wifi",
100 ] 99 ]
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 "//components/precache/core", # Should work, needs checking. 158 "//components/precache/core", # Should work, needs checking.
160 "//components/rappor", # Should work, needs checking. 159 "//components/rappor", # Should work, needs checking.
161 "//components/renderer_context_menu", # Blocked on content. 160 "//components/renderer_context_menu", # Blocked on content.
162 "//components/search_engines", # Should work, needs checking. 161 "//components/search_engines", # Should work, needs checking.
163 "//components/search_provider_logos", # Should work, needs checking. 162 "//components/search_provider_logos", # Should work, needs checking.
164 "//components/sessions", # Blocked on content. 163 "//components/sessions", # Blocked on content.
165 "//components/signin/core/browser", # Should work, needs checking. 164 "//components/signin/core/browser", # Should work, needs checking.
166 "//components/translate/content/browser", # Blocked on content. 165 "//components/translate/content/browser", # Blocked on content.
167 "//components/translate/content/common", # Blocked on content. 166 "//components/translate/content/common", # Blocked on content.
168 "//components/translate/content/renderer", # Blocked on content. 167 "//components/translate/content/renderer", # Blocked on content.
169 "//components/usb_service", # Blocked on content.
170 "//components/user_prefs", # Blocked on content. 168 "//components/user_prefs", # Blocked on content.
171 "//components/visitedlink/browser", # Blocked on content. 169 "//components/visitedlink/browser", # Blocked on content.
172 "//components/visitedlink/common", # Blocked on content. 170 "//components/visitedlink/common", # Blocked on content.
173 "//components/visitedlink/renderer", # Blocked on blink 171 "//components/visitedlink/renderer", # Blocked on blink
174 "//components/web_modal", # Blocked on content. 172 "//components/web_modal", # Blocked on content.
175 ] 173 ]
176 } 174 }
177 175
178 if (!is_ios && !is_android) { 176 if (!is_ios && !is_android) {
179 deps += [ 177 deps += [
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 ] 215 ]
218 216
219 # TODO(GYP) need this target. 217 # TODO(GYP) need this target.
220 #'breakpad/app/crash_keys_win_unittest.cc', 218 #'breakpad/app/crash_keys_win_unittest.cc',
221 219
222 # Precache tests need these defines. 220 # Precache tests need these defines.
223 #configs += [ "//components/precache/core:precache_config" ] 221 #configs += [ "//components/precache/core:precache_config" ]
224 } 222 }
225 223
226 } 224 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698