OLD | NEW |
1 # -*- python -*- | 1 # -*- python -*- |
2 # Copyright 2009 The Native Client Authors. All rights reserved. Use | 2 # Copyright 2009 The Native Client Authors. All rights reserved. Use |
3 # of this source code is governed by a BSD-style license that can be | 3 # 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 | 6 |
7 Import('env') | 7 Import('env') |
8 | 8 |
9 # TODO(robertm): consider adding this to the top level scons files | 9 # TODO(robertm): consider adding this to the top level scons files |
10 env.Append(CPPPATH=['${TARGET_ROOT}']) | 10 env.Append(CPPPATH=['${TARGET_ROOT}']) |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 'nacl_globals.c', | 115 'nacl_globals.c', |
116 'nacl_memory_object.c', | 116 'nacl_memory_object.c', |
117 'nacl_sync_queue.c', | 117 'nacl_sync_queue.c', |
118 'nacl_syscall_common.c', | 118 'nacl_syscall_common.c', |
119 GENERATED + '/nacl_syscall_handlers.c', | 119 GENERATED + '/nacl_syscall_handlers.c', |
120 'nacl_syscall_hook.c', | 120 'nacl_syscall_hook.c', |
121 'sel_addrspace.c', | 121 'sel_addrspace.c', |
122 'sel_ldr.c', | 122 'sel_ldr.c', |
123 'sel_ldr-inl.c', | 123 'sel_ldr-inl.c', |
124 'sel_ldr_standard.c', | 124 'sel_ldr_standard.c', |
125 'sel_load_image.c', | |
126 'sel_mem.c', | 125 'sel_mem.c', |
127 'sel_util.c', | 126 'sel_util.c', |
128 'sel_util-inl.c', | 127 'sel_util-inl.c', |
129 'web_worker_stub.c', | 128 'web_worker_stub.c', |
| 129 'elf_util.c', |
130 ] | 130 ] |
131 | 131 |
132 if env['BUILD_ARCHITECTURE'] == 'x86': | 132 if env['BUILD_ARCHITECTURE'] == 'x86': |
133 ldr_inputs += [ | 133 ldr_inputs += [ |
134 'arch/x86/nacl_app.c', | 134 'arch/x86/nacl_app.c', |
135 'arch/x86/nacl_ldt_x86.c', | 135 'arch/x86/nacl_ldt_x86.c', |
136 'arch/x86/nacl_switch_to_app.c', | 136 'arch/x86/nacl_switch_to_app.c', |
137 'arch/x86/sel_rt.c', | 137 'arch/x86/sel_rt.c', |
138 'arch/x86/nacl_tls.c', | 138 'arch/x86/nacl_tls.c', |
139 'arch/x86/sel_ldr_x86.c', | 139 'arch/x86/sel_ldr_x86.c', |
(...skipping 571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
711 source = [checkedin_file, cmp_script], | 711 source = [checkedin_file, cmp_script], |
712 action = ' '.join(command)) | 712 action = ' '.join(command)) |
713 env.AddNodeToTestSuite(node, ['small_tests'], 'tramp_data') | 713 env.AddNodeToTestSuite(node, ['small_tests'], 'tramp_data') |
714 | 714 |
715 checkedin_file = '${SCONSTRUCT_DIR}/src/trusted/service_runtime/arch/x86_64/sp
ringboard_data.h' | 715 checkedin_file = '${SCONSTRUCT_DIR}/src/trusted/service_runtime/arch/x86_64/sp
ringboard_data.h' |
716 generated_file = springboard_data_header[0] | 716 generated_file = springboard_data_header[0] |
717 node = env.Command(target = None, | 717 node = env.Command(target = None, |
718 source = [checkedin_file, cmp_script], | 718 source = [checkedin_file, cmp_script], |
719 action = ' '.join(command)) | 719 action = ' '.join(command)) |
720 env.AddNodeToTestSuite(node, ['small_tests'], 'springboard_data') | 720 env.AddNodeToTestSuite(node, ['small_tests'], 'springboard_data') |
OLD | NEW |