| 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 '<(INTERMEDIATE_DIR)/nacl_syscall_handlers.c', | 93 '<(INTERMEDIATE_DIR)/nacl_syscall_handlers.c', |
| 94 ], | 94 ], |
| 95 'process_outputs_as_sources': 1, | 95 'process_outputs_as_sources': 1, |
| 96 'message': 'Creating nacl_syscall_handlers.c', | 96 'message': 'Creating nacl_syscall_handlers.c', |
| 97 }, | 97 }, |
| 98 ], | 98 ], |
| 99 'conditions': [ | 99 'conditions': [ |
| 100 ['OS=="mac"', { | 100 ['OS=="mac"', { |
| 101 'sources': [ | 101 'sources': [ |
| 102 'osx/nacl_ldt.c', | 102 'osx/nacl_ldt.c', |
| 103 'osx/nacl_oop_debugger_hooks.c', |
| 103 'osx/nacl_thread_nice.c', | 104 'osx/nacl_thread_nice.c', |
| 104 'linux/sel_memory.c', | 105 'linux/sel_memory.c', |
| 105 'linux/x86/sel_segments.c', | 106 'linux/x86/sel_segments.c', |
| 106 'osx/outer_sandbox.c', | 107 'osx/outer_sandbox.c', |
| 107 ], | 108 ], |
| 108 }], | 109 }], |
| 109 ['OS=="win"', { | 110 ['OS=="win"', { |
| 110 'sources': [ | 111 'sources': [ |
| 111 'win/nacl_ldt.c', | 112 'win/nacl_ldt.c', |
| 113 'win/nacl_oop_debugger_hooks.c', |
| 112 'win/nacl_thread_nice.c', | 114 'win/nacl_thread_nice.c', |
| 113 'win/sel_memory.c', | 115 'win/sel_memory.c', |
| 114 'win/sel_segments.c', | 116 'win/sel_segments.c', |
| 115 ], | 117 ], |
| 116 }], | 118 }], |
| 117 # TODO(gregoryd): move arm-specific stuff into a separate gyp file. | 119 # TODO(gregoryd): move arm-specific stuff into a separate gyp file. |
| 118 ['target_arch=="arm"', { | 120 ['target_arch=="arm"', { |
| 119 'sources': [ | 121 'sources': [ |
| 120 'arch/arm/nacl_app.c', | 122 'arch/arm/nacl_app.c', |
| 121 'arch/arm/nacl_switch_to_app_arm.c', | 123 'arch/arm/nacl_switch_to_app_arm.c', |
| 122 'arch/arm/sel_rt.c', | 124 'arch/arm/sel_rt.c', |
| 123 'arch/arm/nacl_tls.c', | 125 'arch/arm/nacl_tls.c', |
| 124 'arch/arm/sel_ldr_arm.c', | 126 'arch/arm/sel_ldr_arm.c', |
| 125 'arch/arm/sel_addrspace_arm.c', | 127 'arch/arm/sel_addrspace_arm.c', |
| 126 'arch/arm/nacl_switch.S', | 128 'arch/arm/nacl_switch.S', |
| 127 'arch/arm/nacl_syscall.S', | 129 'arch/arm/nacl_syscall.S', |
| 128 'arch/arm/springboard.S', | 130 'arch/arm/springboard.S', |
| 129 'arch/arm/tramp_arm.S', | 131 'arch/arm/tramp_arm.S', |
| 130 'linux/nacl_signal_arm.c', | 132 'linux/nacl_signal_arm.c', |
| 131 ], | 133 ], |
| 132 }], | 134 }], |
| 133 ['OS=="linux"', { | 135 ['OS=="linux"', { |
| 134 'sources': [ | 136 'sources': [ |
| 135 'linux/sel_memory.c', | 137 'linux/sel_memory.c', |
| 138 'linux/nacl_oop_debugger_hooks.c', |
| 136 'linux/nacl_thread_nice.c', | 139 'linux/nacl_thread_nice.c', |
| 137 ], | 140 ], |
| 138 'conditions': [ | 141 'conditions': [ |
| 139 ['target_arch=="ia32" or target_arch=="x64"', { | 142 ['target_arch=="ia32" or target_arch=="x64"', { |
| 140 'sources': [ | 143 'sources': [ |
| 141 'linux/x86/nacl_ldt.c', | 144 'linux/x86/nacl_ldt.c', |
| 142 'linux/x86/sel_segments.c', | 145 'linux/x86/sel_segments.c', |
| 143 ], | 146 ], |
| 144 }], | 147 }], |
| 145 ['target_arch=="arm"', { | 148 ['target_arch=="arm"', { |
| (...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 348 ], | 351 ], |
| 349 'sources': [ | 352 'sources': [ |
| 350 'sel_main.c', | 353 'sel_main.c', |
| 351 ], | 354 ], |
| 352 }, | 355 }, |
| 353 # TODO(bsy): no tests are built; see build.scons | 356 # TODO(bsy): no tests are built; see build.scons |
| 354 ], | 357 ], |
| 355 }], | 358 }], |
| 356 ] | 359 ] |
| 357 } | 360 } |
| OLD | NEW |