| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # Copyright (c) 2012 The Native Client Authors. All rights reserved. | 2 # Copyright (c) 2012 The Native Client Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 import platform | 6 import platform |
| 7 import os | 7 import os |
| 8 | 8 |
| 9 Import('env') | 9 Import('env') |
| 10 | 10 |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 'nacl_reverse_quota_interface.c', | 54 'nacl_reverse_quota_interface.c', |
| 55 'nacl_runtime_host_interface.c', | 55 'nacl_runtime_host_interface.c', |
| 56 'nacl_secure_service.c', | 56 'nacl_secure_service.c', |
| 57 'nacl_signal_common.c', | 57 'nacl_signal_common.c', |
| 58 'nacl_stack_safety.c', | 58 'nacl_stack_safety.c', |
| 59 'nacl_syscall_common.c', | 59 'nacl_syscall_common.c', |
| 60 GENERATED + '/nacl_syscall_handlers.c', | 60 GENERATED + '/nacl_syscall_handlers.c', |
| 61 'nacl_syscall_hook.c', | 61 'nacl_syscall_hook.c', |
| 62 'nacl_text.c', | 62 'nacl_text.c', |
| 63 'nacl_valgrind_hooks.c', | 63 'nacl_valgrind_hooks.c', |
| 64 'name_service/default_name_service.c', | |
| 65 'name_service/name_service.c', | 64 'name_service/name_service.c', |
| 66 'sel_addrspace.c', | 65 'sel_addrspace.c', |
| 67 'sel_ldr.c', | 66 'sel_ldr.c', |
| 68 'sel_ldr_standard.c', | 67 'sel_ldr_standard.c', |
| 69 'sel_ldr_thread_interface.c', | 68 'sel_ldr_thread_interface.c', |
| 70 'sel_main_common.c', | 69 'sel_main_common.c', |
| 71 'sel_mem.c', | 70 'sel_mem.c', |
| 72 'sel_qualify.c', | 71 'sel_qualify.c', |
| 73 'sel_validate_image.c', | 72 'sel_validate_image.c', |
| 74 'sys_exception.c', | 73 'sys_exception.c', |
| (...skipping 972 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1047 is_broken=is_broken) | 1046 is_broken=is_broken) |
| 1048 | 1047 |
| 1049 dyn_array_test_exe = env.ComponentProgram('dyn_array_test', | 1048 dyn_array_test_exe = env.ComponentProgram('dyn_array_test', |
| 1050 ['dyn_array_test.c'], | 1049 ['dyn_array_test.c'], |
| 1051 EXTRA_LIBS=sel_ldr_libs) | 1050 EXTRA_LIBS=sel_ldr_libs) |
| 1052 | 1051 |
| 1053 node = env.CommandTest('dyn_array_test.out', | 1052 node = env.CommandTest('dyn_array_test.out', |
| 1054 command=[dyn_array_test_exe]) | 1053 command=[dyn_array_test_exe]) |
| 1055 | 1054 |
| 1056 env.AddNodeToTestSuite(node, ['small_tests'], 'run_dyn_array_test') | 1055 env.AddNodeToTestSuite(node, ['small_tests'], 'run_dyn_array_test') |
| OLD | NEW |