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 Import('env') | 6 Import('env') |
7 | 7 |
8 async_nexe_name = 'async_message_test_%s.nexe' % env.get('TARGET_FULLARCH') | 8 async_nexe_name = 'async_message_test_%s' % env.get('TARGET_FULLARCH') |
9 async_message_prog = env.ComponentProgram( | 9 async_message_prog = env.ComponentProgram( |
10 async_nexe_name, 'async_message_test.c', | 10 async_nexe_name, 'async_message_test.c', |
11 EXTRA_LIBS=['${NON_PPAPI_BROWSER_LIBS}', 'imc_syscalls']) | 11 EXTRA_LIBS=['${NON_PPAPI_BROWSER_LIBS}', 'imc_syscalls']) |
12 | 12 |
13 spin_nexe_name = 'spin_%s.nexe' % env.get('TARGET_FULLARCH') | 13 spin_nexe_name = 'spin_%s' % env.get('TARGET_FULLARCH') |
14 spin_prog = env.ComponentProgram(spin_nexe_name, 'spin.c', | 14 spin_prog = env.ComponentProgram(spin_nexe_name, 'spin.c', |
15 EXTRA_LIBS=['imc_syscalls']) | 15 EXTRA_LIBS=['imc_syscalls']) |
16 | 16 |
17 deferred_nexe_name = 'deferred_srpc_init_%s.nexe' % env.get('TARGET_FULLARCH') | 17 deferred_nexe_name = 'deferred_srpc_init_%s' % env.get('TARGET_FULLARCH') |
18 deferred_srpc_init_prog = env.ComponentProgram( | 18 deferred_srpc_init_prog = env.ComponentProgram( |
19 deferred_nexe_name, 'deferred_srpc_init.c', | 19 deferred_nexe_name, 'deferred_srpc_init.c', |
20 EXTRA_LIBS=['srpc', 'imc_syscalls', 'platform', 'gio', 'pthread']) | 20 EXTRA_LIBS=['srpc', 'imc_syscalls', 'platform', 'gio', 'pthread']) |
OLD | NEW |