| 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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 "//components/webdata/common:unit_tests", | 137 "//components/webdata/common:unit_tests", |
| 138 | 138 |
| 139 # Direct dependencies of components/test/run_all_unittests.cc. | 139 # Direct dependencies of components/test/run_all_unittests.cc. |
| 140 "//components/content_settings/core/common", | 140 "//components/content_settings/core/common", |
| 141 "//net", | 141 "//net", |
| 142 "//testing/gtest", | 142 "//testing/gtest", |
| 143 "//ui/base", | 143 "//ui/base", |
| 144 "//ui/resources:ui_test_pak", | 144 "//ui/resources:ui_test_pak", |
| 145 ] | 145 ] |
| 146 | 146 |
| 147 if (enable_nacl) { |
| 148 deps += [ "//components/nacl/browser:unit_tests" ] |
| 149 } |
| 150 |
| 147 if (is_ios) { | 151 if (is_ios) { |
| 148 deps += [ | 152 deps += [ |
| 149 "//components/signin/ios/browser:unit_tests", | 153 "//components/signin/ios/browser:unit_tests", |
| 150 "//components/translate/ios/browser:unit_tests", | 154 "//components/translate/ios/browser:unit_tests", |
| 151 ] | 155 ] |
| 152 | 156 |
| 153 if (target_cpu != "arm") { | 157 if (target_cpu != "arm") { |
| 154 # TODO(GYP): iOS arm builds of libwebp don't work yet. | 158 # TODO(GYP): iOS arm builds of libwebp don't work yet. |
| 155 deps += [ "//components/webp_transcode:unit_tests" ] | 159 deps += [ "//components/webp_transcode:unit_tests" ] |
| 156 } | 160 } |
| (...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 470 "//base/test:test_support_perf", | 474 "//base/test:test_support_perf", |
| 471 "//components/scheduler", | 475 "//components/scheduler", |
| 472 "//components/visitedlink/browser", | 476 "//components/visitedlink/browser", |
| 473 "//content/test:test_support", | 477 "//content/test:test_support", |
| 474 "//testing/gtest", | 478 "//testing/gtest", |
| 475 "//testing/perf", | 479 "//testing/perf", |
| 476 "//url", | 480 "//url", |
| 477 ] | 481 ] |
| 478 } | 482 } |
| 479 } | 483 } |
| OLD | NEW |