OLD | NEW |
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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 if (!is_android) { | 136 if (!is_android) { |
137 # TODO(agrieve): Add to main deps list once compile errors are resolved. | 137 # TODO(agrieve): Add to main deps list once compile errors are resolved. |
138 deps += [ "//components/devtools_service" ] | 138 deps += [ "//components/devtools_service" ] |
139 } | 139 } |
140 | 140 |
141 if (!is_android && !is_ios) { | 141 if (!is_android && !is_ios) { |
142 deps += [ | 142 deps += [ |
143 "//components/audio_modem", | 143 "//components/audio_modem", |
144 "//components/proximity_auth", | 144 "//components/proximity_auth", |
145 "//components/proximity_auth/cryptauth", | 145 "//components/proximity_auth/cryptauth", |
| 146 "//components/webusb", |
146 ] | 147 ] |
147 } | 148 } |
148 | 149 |
149 if (!enable_configuration_policy) { | 150 if (!enable_configuration_policy) { |
150 deps -= [ "//components/policy" ] | 151 deps -= [ "//components/policy" ] |
151 } | 152 } |
152 | 153 |
153 if (!is_win && !is_mac) { | 154 if (!is_win && !is_mac) { |
154 deps -= [ "//components/wifi" ] | 155 deps -= [ "//components/wifi" ] |
155 } | 156 } |
(...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
555 | 556 |
556 deps = [ | 557 deps = [ |
557 "//base", | 558 "//base", |
558 "//base/test:test_support_perf", | 559 "//base/test:test_support_perf", |
559 "//testing/gtest", | 560 "//testing/gtest", |
560 "//testing/perf", | 561 "//testing/perf", |
561 "//content/test:test_support", | 562 "//content/test:test_support", |
562 "//components/visitedlink/browser", | 563 "//components/visitedlink/browser", |
563 ] | 564 ] |
564 } | 565 } |
OLD | NEW |