OLD | NEW |
1 # -*- python -*- | 1 # -*- python -*- |
2 # Copyright (c) 2011 The Native Client Authors. All rights reserved. | 2 # Copyright (c) 2011 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 { | 6 { |
7 'variables': { | 7 'variables': { |
8 'conditions': [ | 8 'conditions': [ |
9 ['OS=="linux"', { | 9 ['OS=="linux"', { |
10 'syscall_handler': [ | 10 'syscall_handler': [ |
(...skipping 21 matching lines...) Expand all Loading... |
32 'target_base': 'none', | 32 'target_base': 'none', |
33 }, | 33 }, |
34 'target_conditions': [ | 34 'target_conditions': [ |
35 ['target_base=="sel"', { | 35 ['target_base=="sel"', { |
36 'sources': [ | 36 'sources': [ |
37 'dyn_array.c', | 37 'dyn_array.c', |
38 'elf_util.c', | 38 'elf_util.c', |
39 'nacl_all_modules.c', | 39 'nacl_all_modules.c', |
40 'nacl_app_thread.c', | 40 'nacl_app_thread.c', |
41 'nacl_desc_effector_ldr.c', | 41 'nacl_desc_effector_ldr.c', |
| 42 'nacl_desc_postmessage.c', |
42 'nacl_globals.c', | 43 'nacl_globals.c', |
43 'nacl_kern_services.c', | 44 'nacl_kern_services.c', |
44 'nacl_memory_object.c', | 45 'nacl_memory_object.c', |
| 46 'nacl_resource.c', |
45 'nacl_signal_common.c', | 47 'nacl_signal_common.c', |
46 'nacl_stack_safety.c', | 48 'nacl_stack_safety.c', |
47 'nacl_syscall_common.c', | 49 'nacl_syscall_common.c', |
48 'nacl_syscall_hook.c', | 50 'nacl_syscall_hook.c', |
49 'nacl_text.c', | 51 'nacl_text.c', |
50 'nacl_valgrind_hooks.c', | 52 'nacl_valgrind_hooks.c', |
51 'name_service/default_name_service.c', | 53 'name_service/default_name_service.c', |
52 'name_service/name_service.c', | 54 'name_service/name_service.c', |
53 'sel_addrspace.c', | 55 'sel_addrspace.c', |
54 'sel_ldr.c', | 56 'sel_ldr.c', |
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
368 ], | 370 ], |
369 'sources': [ | 371 'sources': [ |
370 'sel_main.c', | 372 'sel_main.c', |
371 ], | 373 ], |
372 }, | 374 }, |
373 # TODO(bsy): no tests are built; see build.scons | 375 # TODO(bsy): no tests are built; see build.scons |
374 ], | 376 ], |
375 }], | 377 }], |
376 ] | 378 ] |
377 } | 379 } |
OLD | NEW |