Chromium Code Reviews| 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 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 295 # These are the deps required by the code in this target. | 295 # These are the deps required by the code in this target. |
| 296 "//base", | 296 "//base", |
| 297 "//base/test:test_support", | 297 "//base/test:test_support", |
| 298 "//content/test:test_support", | 298 "//content/test:test_support", |
| 299 "//net", | 299 "//net", |
| 300 "//ui/base", | 300 "//ui/base", |
| 301 "//ui/resources:ui_test_pak", | 301 "//ui/resources:ui_test_pak", |
| 302 ] | 302 ] |
| 303 data_deps = [ ":components_tests_pak" ] | 303 data_deps = [ ":components_tests_pak" ] |
| 304 | 304 |
| 305 if (!is_ios) { | |
| 306 deps += [ "//media" ] | |
|
ddorwin
2015/05/14 18:09:59
Why do we need this dependency at all here? We hav
servolk
2015/05/14 22:30:49
Probably not anymore. I've added this dependency i
| |
| 307 } | |
| 308 | |
| 305 if (!is_android && !is_ios) { | 309 if (!is_android && !is_ios) { |
| 306 deps += [ "//components/proximity_auth:unit_tests" ] | 310 deps += [ "//components/proximity_auth:unit_tests" ] |
| 307 } | 311 } |
| 308 | 312 |
| 309 # TODO(GYP) need this target. | 313 # TODO(GYP) need this target. |
| 310 #'breakpad/app/crash_keys_win_unittest.cc', | 314 #'breakpad/app/crash_keys_win_unittest.cc', |
| 311 | 315 |
| 312 # Precache tests need these defines. | 316 # Precache tests need these defines. |
| 313 #configs += [ "//components/precache/core:precache_config" ] | 317 #configs += [ "//components/precache/core:precache_config" ] |
| 314 | 318 |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 424 | 428 |
| 425 deps = [ | 429 deps = [ |
| 426 "//base", | 430 "//base", |
| 427 "//base/test:test_support_perf", | 431 "//base/test:test_support_perf", |
| 428 "//testing/gtest", | 432 "//testing/gtest", |
| 429 "//testing/perf", | 433 "//testing/perf", |
| 430 "//content/test:test_support", | 434 "//content/test:test_support", |
| 431 "//components/visitedlink/browser", | 435 "//components/visitedlink/browser", |
| 432 ] | 436 ] |
| 433 } | 437 } |
| OLD | NEW |