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 | 6 |
7 assert(!is_android || enable_plugins, | 7 assert(!is_android || enable_plugins, |
8 "//ppapi should not be referenced when is_android && !enable_plugins") | 8 "//ppapi should not be referenced when is_android && !enable_plugins") |
9 | 9 |
10 if (is_mac) { | 10 if (is_mac) { |
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
304 if (current_cpu == "pnacl") { | 304 if (current_cpu == "pnacl") { |
305 pretranslate_pexe = true | 305 pretranslate_pexe = true |
306 } | 306 } |
307 } | 307 } |
308 } | 308 } |
309 | 309 |
310 group("ppapi_nacl_tests_all") { | 310 group("ppapi_nacl_tests_all") { |
311 data_deps = [ | 311 data_deps = [ |
312 ":copy_test_files", | 312 ":copy_test_files", |
313 ":ppapi_nacl_tests(//build/toolchain/nacl:clang_newlib_${target_cpu})", | 313 ":ppapi_nacl_tests(//build/toolchain/nacl:clang_newlib_${target_cpu})", |
314 ":ppapi_nacl_tests(//build/toolchain/nacl:glibc_${target_cpu})", | |
315 ":ppapi_nacl_tests(//build/toolchain/nacl:newlib_pnacl)", | 314 ":ppapi_nacl_tests(//build/toolchain/nacl:newlib_pnacl)", |
316 ":ppapi_nacl_tests(//build/toolchain/nacl:newlib_pnacl_nonsfi)", | |
317 ] | 315 ] |
| 316 |
| 317 if (target_cpu != "mipsel") { |
| 318 data_deps += |
| 319 [ ":ppapi_nacl_tests(//build/toolchain/nacl:glibc_${target_cpu})" ] |
| 320 } |
| 321 |
| 322 if (is_linux && enable_nacl_nonsfi) { |
| 323 data_deps += |
| 324 [ ":ppapi_nacl_tests(//build/toolchain/nacl:newlib_pnacl_nonsfi)" ] |
| 325 } |
318 } | 326 } |
319 } | 327 } |
OLD | NEW |