| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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('env') | 5 Import('env') |
| 6 | 6 |
| 7 ppapi_tests_target = 'ppapi_tests_%s.nexe' % env.get('TARGET_FULLARCH') | 7 ppapi_tests_target = 'ppapi_tests_${TARGET_FULLARCH}' |
| 8 | 8 |
| 9 ppapi_tests_sources = [ | 9 ppapi_tests_sources = [ |
| 10 # Common test files | 10 # Common test files |
| 11 '${SOURCE_ROOT}/ppapi/tests/test_case.cc', | 11 '${SOURCE_ROOT}/ppapi/tests/test_case.cc', |
| 12 '${SOURCE_ROOT}/ppapi/tests/test_utils.cc', | 12 '${SOURCE_ROOT}/ppapi/tests/test_utils.cc', |
| 13 '${SOURCE_ROOT}/ppapi/tests/testing_instance.cc', | 13 '${SOURCE_ROOT}/ppapi/tests/testing_instance.cc', |
| 14 | 14 |
| 15 # Compile-time tests | 15 # Compile-time tests |
| 16 '${SOURCE_ROOT}/ppapi/tests/test_c_includes.c', | 16 '${SOURCE_ROOT}/ppapi/tests/test_c_includes.c', |
| 17 '${SOURCE_ROOT}/ppapi/tests/test_cpp_includes.cc', | 17 '${SOURCE_ROOT}/ppapi/tests/test_cpp_includes.cc', |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 env.Publish(ppapi_tests_target, 'run', | 61 env.Publish(ppapi_tests_target, 'run', |
| 62 ['${SOURCE_ROOT}/ppapi/tests/test_url_loader_data/*'], | 62 ['${SOURCE_ROOT}/ppapi/tests/test_url_loader_data/*'], |
| 63 subdir='test_url_loader_data') | 63 subdir='test_url_loader_data') |
| 64 | 64 |
| 65 env.Publish(ppapi_tests_target, 'run', | 65 env.Publish(ppapi_tests_target, 'run', |
| 66 [ppapi_tests_nexe, | 66 [ppapi_tests_nexe, |
| 67 '${SOURCE_ROOT}/ppapi/tests/test_case.html', | 67 '${SOURCE_ROOT}/ppapi/tests/test_case.html', |
| 68 'test_case.nmf', | 68 'test_case.nmf', |
| 69 '${SOURCE_ROOT}/ppapi/tests/test_image_data', | 69 '${SOURCE_ROOT}/ppapi/tests/test_image_data', |
| 70 '${SOURCE_ROOT}/ppapi/tests/test_page.css']) | 70 '${SOURCE_ROOT}/ppapi/tests/test_page.css']) |
| OLD | NEW |