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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//printing/features/features.gni") | 8 import("//printing/features/features.gni") |
9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
10 import("//tools/grit/repack.gni") | 10 import("//tools/grit/repack.gni") |
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
249 ] | 249 ] |
250 | 250 |
251 if (enable_configuration_policy) { | 251 if (enable_configuration_policy) { |
252 deps += [ "//components/policy/android:policy_java" ] | 252 deps += [ "//components/policy/android:policy_java" ] |
253 } | 253 } |
254 } | 254 } |
255 | 255 |
256 # Desktop-only deps. | 256 # Desktop-only deps. |
257 if (!is_android && !is_ios) { | 257 if (!is_android && !is_ios) { |
258 deps += [ | 258 deps += [ |
| 259 "//components/cryptauth:unit_tests", |
259 "//components/feedback:unit_tests", | 260 "//components/feedback:unit_tests", |
260 "//components/proximity_auth:unit_tests", | 261 "//components/proximity_auth:unit_tests", |
261 "//components/storage_monitor:unit_tests", | 262 "//components/storage_monitor:unit_tests", |
262 "//components/web_modal:unit_tests", | 263 "//components/web_modal:unit_tests", |
263 ] | 264 ] |
264 } | 265 } |
265 | 266 |
266 if (enable_rlz_support) { | 267 if (enable_rlz_support) { |
267 deps += [ "//components/rlz:unit_tests" ] | 268 deps += [ "//components/rlz:unit_tests" ] |
268 } | 269 } |
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
499 "//testing/perf", | 500 "//testing/perf", |
500 "//url", | 501 "//url", |
501 ] | 502 ] |
502 | 503 |
503 if (!is_ios) { | 504 if (!is_ios) { |
504 sources += [ "discardable_memory/common/discardable_shared_memory_heap_per
ftest.cc" ] | 505 sources += [ "discardable_memory/common/discardable_shared_memory_heap_per
ftest.cc" ] |
505 deps += [ "//components/discardable_memory/common" ] | 506 deps += [ "//components/discardable_memory/common" ] |
506 } | 507 } |
507 } | 508 } |
508 } | 509 } |
OLD | NEW |