| 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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 if (enable_nacl) { | 151 if (enable_nacl) { |
| 152 deps += [ "//components/nacl/browser:unit_tests" ] | 152 deps += [ "//components/nacl/browser:unit_tests" ] |
| 153 } | 153 } |
| 154 | 154 |
| 155 if (is_ios) { | 155 if (is_ios) { |
| 156 deps += [ | 156 deps += [ |
| 157 "//components/signin/ios/browser:unit_tests", | 157 "//components/signin/ios/browser:unit_tests", |
| 158 "//components/translate/ios/browser:unit_tests", | 158 "//components/translate/ios/browser:unit_tests", |
| 159 ] | 159 ] |
| 160 | 160 |
| 161 if (target_cpu != "arm") { | 161 if (current_cpu != "arm") { |
| 162 # TODO(GYP): iOS arm builds of libwebp don't work yet. | 162 # TODO(GYP): iOS arm builds of libwebp don't work yet. |
| 163 deps += [ "//components/webp_transcode:unit_tests" ] | 163 deps += [ "//components/webp_transcode:unit_tests" ] |
| 164 } | 164 } |
| 165 } else { # !iOS | 165 } else { # !iOS |
| 166 deps += [ | 166 deps += [ |
| 167 "//components/autofill/content/browser:unit_tests", | 167 "//components/autofill/content/browser:unit_tests", |
| 168 "//components/autofill/content/renderer:unit_tests", | 168 "//components/autofill/content/renderer:unit_tests", |
| 169 "//components/cast_certificate:unit_tests", | 169 "//components/cast_certificate:unit_tests", |
| 170 "//components/certificate_transparency:unit_tests", | 170 "//components/certificate_transparency:unit_tests", |
| 171 "//components/crash/content/app:unit_tests", | 171 "//components/crash/content/app:unit_tests", |
| (...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 481 "//base/test:test_support_perf", | 481 "//base/test:test_support_perf", |
| 482 "//components/scheduler", | 482 "//components/scheduler", |
| 483 "//components/visitedlink/browser", | 483 "//components/visitedlink/browser", |
| 484 "//content/test:test_support", | 484 "//content/test:test_support", |
| 485 "//testing/gtest", | 485 "//testing/gtest", |
| 486 "//testing/perf", | 486 "//testing/perf", |
| 487 "//url", | 487 "//url", |
| 488 ] | 488 ] |
| 489 } | 489 } |
| 490 } | 490 } |
| OLD | NEW |