| 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 assert(!is_android || enable_plugins, |
| 6 "//ppapi should not be referenced when is_android && !enable_plugins") |
| 7 |
| 5 copy("copy_test_files") { | 8 copy("copy_test_files") { |
| 6 visibility = [ ":*" ] | 9 visibility = [ ":*" ] |
| 7 sources = [ | 10 sources = [ |
| 8 # Keep "test_case.html.mock-http-headers" with "test_case.html". | 11 # Keep "test_case.html.mock-http-headers" with "test_case.html". |
| 9 "tests/ppapi_nacl_tests_newlib.nmf", | 12 "tests/ppapi_nacl_tests_newlib.nmf", |
| 10 "tests/test_case.html", | 13 "tests/test_case.html", |
| 11 "tests/test_case.html.mock-http-headers", | 14 "tests/test_case.html.mock-http-headers", |
| 12 "tests/test_page.css", | 15 "tests/test_page.css", |
| 13 "tests/test_page.css.mock-http-headers", | 16 "tests/test_page.css.mock-http-headers", |
| 14 ] | 17 ] |
| (...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 346 ":ppapi_nacl_tests_nmf(//build/toolchain/nacl:glibc_${target_cpu})", | 349 ":ppapi_nacl_tests_nmf(//build/toolchain/nacl:glibc_${target_cpu})", |
| 347 ] | 350 ] |
| 348 if (enable_pnacl) { | 351 if (enable_pnacl) { |
| 349 data_deps += [ | 352 data_deps += [ |
| 350 ":ppapi_nacl_tests_nmf(//build/toolchain/nacl:newlib_pnacl)", | 353 ":ppapi_nacl_tests_nmf(//build/toolchain/nacl:newlib_pnacl)", |
| 351 ":ppapi_nacl_tests_pnacl_nonsfi_nmf(//build/toolchain/nacl:newlib_pnacl_
nonsfi)", | 354 ":ppapi_nacl_tests_pnacl_nonsfi_nmf(//build/toolchain/nacl:newlib_pnacl_
nonsfi)", |
| 352 ] | 355 ] |
| 353 } | 356 } |
| 354 } | 357 } |
| 355 } | 358 } |
| OLD | NEW |