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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 | 134 |
135 if (!is_android) { | 135 if (!is_android) { |
136 # TODO(agrieve): Add to main deps list once compile errors are resolved. | 136 # TODO(agrieve): Add to main deps list once compile errors are resolved. |
137 deps += [ "//components/devtools_service" ] | 137 deps += [ "//components/devtools_service" ] |
138 } | 138 } |
139 | 139 |
140 if (!is_android && !is_ios) { | 140 if (!is_android && !is_ios) { |
141 deps += [ | 141 deps += [ |
142 "//components/proximity_auth", | 142 "//components/proximity_auth", |
143 "//components/proximity_auth/cryptauth", | 143 "//components/proximity_auth/cryptauth", |
| 144 "//components/webusb", |
144 ] | 145 ] |
145 } | 146 } |
146 | 147 |
147 if (!enable_configuration_policy) { | 148 if (!enable_configuration_policy) { |
148 deps -= [ "//components/policy" ] | 149 deps -= [ "//components/policy" ] |
149 } | 150 } |
150 | 151 |
151 if (!is_win && !is_mac) { | 152 if (!is_win && !is_mac) { |
152 deps -= [ "//components/wifi" ] | 153 deps -= [ "//components/wifi" ] |
153 } | 154 } |
(...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
503 | 504 |
504 deps = [ | 505 deps = [ |
505 "//base", | 506 "//base", |
506 "//base/test:test_support_perf", | 507 "//base/test:test_support_perf", |
507 "//testing/gtest", | 508 "//testing/gtest", |
508 "//testing/perf", | 509 "//testing/perf", |
509 "//content/test:test_support", | 510 "//content/test:test_support", |
510 "//components/visitedlink/browser", | 511 "//components/visitedlink/browser", |
511 ] | 512 ] |
512 } | 513 } |
OLD | NEW |