| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 'sel_qualify.c', | 72 'sel_qualify.c', |
| 73 'sel_validate_image.c', | 73 'sel_validate_image.c', |
| 74 'sys_exception.c', | 74 'sys_exception.c', |
| 75 'sys_fdio.c', | 75 'sys_fdio.c', |
| 76 'sys_filename.c', | 76 'sys_filename.c', |
| 77 'sys_futex.c', | 77 'sys_futex.c', |
| 78 'sys_imc.c', | 78 'sys_imc.c', |
| 79 'sys_list_mappings.c', | 79 'sys_list_mappings.c', |
| 80 'sys_memory.c', | 80 'sys_memory.c', |
| 81 'sys_parallel_io.c', | 81 'sys_parallel_io.c', |
| 82 'sys_random.c', |
| 82 'thread_suspension_common.c', | 83 'thread_suspension_common.c', |
| 83 'thread_suspension_unwind.c', | 84 'thread_suspension_unwind.c', |
| 84 ] | 85 ] |
| 85 | 86 |
| 86 if env.Bit('build_x86_32'): | 87 if env.Bit('build_x86_32'): |
| 87 ldr_inputs += [ | 88 ldr_inputs += [ |
| 88 'arch/x86/nacl_ldt_x86.c', | 89 'arch/x86/nacl_ldt_x86.c', |
| 89 'arch/x86_32/nacl_app_32.c', | 90 'arch/x86_32/nacl_app_32.c', |
| 90 'arch/x86_32/nacl_switch_32.S', | 91 'arch/x86_32/nacl_switch_32.S', |
| 91 'arch/x86_32/nacl_switch_all_regs_32.c', | 92 'arch/x86_32/nacl_switch_all_regs_32.c', |
| (...skipping 954 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1046 is_broken=is_broken) | 1047 is_broken=is_broken) |
| 1047 | 1048 |
| 1048 dyn_array_test_exe = env.ComponentProgram('dyn_array_test', | 1049 dyn_array_test_exe = env.ComponentProgram('dyn_array_test', |
| 1049 ['dyn_array_test.c'], | 1050 ['dyn_array_test.c'], |
| 1050 EXTRA_LIBS=sel_ldr_libs) | 1051 EXTRA_LIBS=sel_ldr_libs) |
| 1051 | 1052 |
| 1052 node = env.CommandTest('dyn_array_test.out', | 1053 node = env.CommandTest('dyn_array_test.out', |
| 1053 command=[dyn_array_test_exe]) | 1054 command=[dyn_array_test_exe]) |
| 1054 | 1055 |
| 1055 env.AddNodeToTestSuite(node, ['small_tests'], 'run_dyn_array_test') | 1056 env.AddNodeToTestSuite(node, ['small_tests'], 'run_dyn_array_test') |
| OLD | NEW |