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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 | 154 |
155 if (enable_nacl) { | 155 if (enable_nacl) { |
156 deps += [ "//components/nacl/browser:unit_tests" ] | 156 deps += [ "//components/nacl/browser:unit_tests" ] |
157 } | 157 } |
158 | 158 |
159 if (is_ios) { | 159 if (is_ios) { |
160 deps += [ | 160 deps += [ |
161 "//components/signin/ios/browser:unit_tests", | 161 "//components/signin/ios/browser:unit_tests", |
162 "//components/translate/ios/browser:unit_tests", | 162 "//components/translate/ios/browser:unit_tests", |
163 ] | 163 ] |
164 | |
165 if (current_cpu != "arm") { | |
166 # TODO(GYP): iOS arm builds of libwebp don't work yet. | |
167 deps += [ "//components/webp_transcode:unit_tests" ] | |
168 } | |
169 } else { # !iOS | 164 } else { # !iOS |
170 deps += [ | 165 deps += [ |
171 "//components/autofill/content/browser:unit_tests", | 166 "//components/autofill/content/browser:unit_tests", |
172 "//components/autofill/content/public/cpp:unit_tests", | 167 "//components/autofill/content/public/cpp:unit_tests", |
173 "//components/autofill/content/renderer:unit_tests", | 168 "//components/autofill/content/renderer:unit_tests", |
174 "//components/cast_certificate:unit_tests", | 169 "//components/cast_certificate:unit_tests", |
175 "//components/certificate_transparency:unit_tests", | 170 "//components/certificate_transparency:unit_tests", |
176 "//components/crash/content/app:unit_tests", | 171 "//components/crash/content/app:unit_tests", |
177 "//components/crash/core/common:unit_tests", | 172 "//components/crash/core/common:unit_tests", |
178 "//components/data_reduction_proxy/content/browser:unit_tests", | 173 "//components/data_reduction_proxy/content/browser:unit_tests", |
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
492 "//base/test:test_support_perf", | 487 "//base/test:test_support_perf", |
493 "//components/scheduler", | 488 "//components/scheduler", |
494 "//components/visitedlink/browser", | 489 "//components/visitedlink/browser", |
495 "//content/test:test_support", | 490 "//content/test:test_support", |
496 "//testing/gtest", | 491 "//testing/gtest", |
497 "//testing/perf", | 492 "//testing/perf", |
498 "//url", | 493 "//url", |
499 ] | 494 ] |
500 } | 495 } |
501 } | 496 } |
OLD | NEW |