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

Side by Side Diff: components/BUILD.gn

Issue 1289423002: Add webusb notification UI code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: changed variable name Created 5 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 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//testing/test.gni") 7 import("//testing/test.gni")
8 import("//tools/grit/repack.gni") 8 import("//tools/grit/repack.gni")
9 9
10 # Collection of all components. You wouldn't link to this, but this is rather 10 # Collection of all components. You wouldn't link to this, but this is rather
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 if (!is_android) { 140 if (!is_android) {
141 # TODO(agrieve): Add to main deps list once compile errors are resolved. 141 # TODO(agrieve): Add to main deps list once compile errors are resolved.
142 deps += [ "//components/devtools_service" ] 142 deps += [ "//components/devtools_service" ]
143 } 143 }
144 144
145 if (!is_android && !is_ios) { 145 if (!is_android && !is_ios) {
146 deps += [ 146 deps += [
147 "//components/audio_modem", 147 "//components/audio_modem",
148 "//components/proximity_auth", 148 "//components/proximity_auth",
149 "//components/proximity_auth/cryptauth", 149 "//components/proximity_auth/cryptauth",
150 "//components/webusb",
150 ] 151 ]
151 } 152 }
152 153
153 if (!enable_configuration_policy) { 154 if (!enable_configuration_policy) {
154 deps -= [ "//components/policy" ] 155 deps -= [ "//components/policy" ]
155 } 156 }
156 157
157 if (!is_win && !is_mac) { 158 if (!is_win && !is_mac) {
158 deps -= [ "//components/wifi" ] 159 deps -= [ "//components/wifi" ]
159 } 160 }
(...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after
579 580
580 deps = [ 581 deps = [
581 "//base", 582 "//base",
582 "//base/test:test_support_perf", 583 "//base/test:test_support_perf",
583 "//testing/gtest", 584 "//testing/gtest",
584 "//testing/perf", 585 "//testing/perf",
585 "//content/test:test_support", 586 "//content/test:test_support",
586 "//components/visitedlink/browser", 587 "//components/visitedlink/browser",
587 ] 588 ]
588 } 589 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698