| 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 if (is_android) { | 10 if (is_android) { |
| (...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 } | 260 } |
| 261 } | 261 } |
| 262 | 262 |
| 263 # Desktop-only deps. | 263 # Desktop-only deps. |
| 264 if (!is_android && !is_ios) { | 264 if (!is_android && !is_ios) { |
| 265 deps += [ | 265 deps += [ |
| 266 "//components/feedback:unit_tests", | 266 "//components/feedback:unit_tests", |
| 267 "//components/proximity_auth:unit_tests", | 267 "//components/proximity_auth:unit_tests", |
| 268 "//components/storage_monitor:unit_tests", | 268 "//components/storage_monitor:unit_tests", |
| 269 "//components/web_modal:unit_tests", | 269 "//components/web_modal:unit_tests", |
| 270 "//components/webusb:unit_tests", | |
| 271 ] | 270 ] |
| 272 } | 271 } |
| 273 | 272 |
| 274 if (enable_rlz_support) { | 273 if (enable_rlz_support) { |
| 275 deps += [ "//components/rlz:unit_tests" ] | 274 deps += [ "//components/rlz:unit_tests" ] |
| 276 } | 275 } |
| 277 | 276 |
| 278 if (is_chromeos) { | 277 if (is_chromeos) { |
| 279 deps += [ | 278 deps += [ |
| 280 "//components/arc:unit_tests", | 279 "//components/arc:unit_tests", |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 494 "//base/test:test_support_perf", | 493 "//base/test:test_support_perf", |
| 495 "//components/scheduler", | 494 "//components/scheduler", |
| 496 "//components/visitedlink/browser", | 495 "//components/visitedlink/browser", |
| 497 "//content/test:test_support", | 496 "//content/test:test_support", |
| 498 "//testing/gtest", | 497 "//testing/gtest", |
| 499 "//testing/perf", | 498 "//testing/perf", |
| 500 "//url", | 499 "//url", |
| 501 ] | 500 ] |
| 502 } | 501 } |
| 503 } | 502 } |
| OLD | NEW |