| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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/compiler/compiler.gni") |
| 5 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 6 import("//build/config/nacl/config.gni") | 7 import("//build/config/nacl/config.gni") |
| 7 import("//build/toolchain/toolchain.gni") | |
| 8 import("//ppapi/native_client/nacl_test_data.gni") | 8 import("//ppapi/native_client/nacl_test_data.gni") |
| 9 | 9 |
| 10 group("nacl") { | 10 group("nacl") { |
| 11 newlib = "//build/toolchain/nacl:clang_newlib_${target_cpu}" | 11 newlib = "//build/toolchain/nacl:clang_newlib_${target_cpu}" |
| 12 pnacl = "//build/toolchain/nacl:newlib_pnacl" | 12 pnacl = "//build/toolchain/nacl:newlib_pnacl" |
| 13 data_deps = [ | 13 data_deps = [ |
| 14 ":exit_status_test($newlib)", | 14 ":exit_status_test($newlib)", |
| 15 ":exit_status_test($pnacl)", | 15 ":exit_status_test($pnacl)", |
| 16 ":extension_validation_cache($newlib)", | 16 ":extension_validation_cache($newlib)", |
| 17 ":irt_exception_test($newlib)", | 17 ":irt_exception_test($newlib)", |
| (...skipping 605 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 623 "nonsfi/libc_free.nmf", | 623 "nonsfi/libc_free.nmf", |
| 624 ] | 624 ] |
| 625 outputs = [ | 625 outputs = [ |
| 626 "${root_build_dir}/nacl_test_data/libc-free/{{source_file_part}}", | 626 "${root_build_dir}/nacl_test_data/libc-free/{{source_file_part}}", |
| 627 ] | 627 ] |
| 628 deps = [ | 628 deps = [ |
| 629 ":nonsfi_libc_free_nexe", | 629 ":nonsfi_libc_free_nexe", |
| 630 ] | 630 ] |
| 631 } | 631 } |
| 632 } | 632 } |
| OLD | NEW |