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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 "//components/webdata/common", | 138 "//components/webdata/common", |
139 "//components/wifi", | 139 "//components/wifi", |
140 "//components/wifi_sync", | 140 "//components/wifi_sync", |
141 ] | 141 ] |
142 | 142 |
143 if (!is_android && !is_ios) { | 143 if (!is_android && !is_ios) { |
144 deps += [ | 144 deps += [ |
145 "//components/audio_modem", | 145 "//components/audio_modem", |
146 "//components/proximity_auth", | 146 "//components/proximity_auth", |
147 "//components/proximity_auth/cryptauth", | 147 "//components/proximity_auth/cryptauth", |
| 148 "//components/webusb", |
148 ] | 149 ] |
149 } | 150 } |
150 | 151 |
151 if (!enable_configuration_policy) { | 152 if (!enable_configuration_policy) { |
152 deps -= [ "//components/policy" ] | 153 deps -= [ "//components/policy" ] |
153 } | 154 } |
154 | 155 |
155 if (!is_win && !is_mac) { | 156 if (!is_win && !is_mac) { |
156 deps -= [ "//components/wifi" ] | 157 deps -= [ "//components/wifi" ] |
157 } | 158 } |
(...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
584 | 585 |
585 deps = [ | 586 deps = [ |
586 "//base", | 587 "//base", |
587 "//base/test:test_support_perf", | 588 "//base/test:test_support_perf", |
588 "//testing/gtest", | 589 "//testing/gtest", |
589 "//testing/perf", | 590 "//testing/perf", |
590 "//content/test:test_support", | 591 "//content/test:test_support", |
591 "//components/visitedlink/browser", | 592 "//components/visitedlink/browser", |
592 ] | 593 ] |
593 } | 594 } |
OLD | NEW |