Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(45)

Side by Side Diff: tests/fake_browser/nacl.scons

Issue 7242011: Get rid of assumptions about ".nexe" extension. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: '' Created 9 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tests/environment_variables/nacl.scons ('k') | tests/fake_browser_ppapi/nacl.scons » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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'])
OLDNEW
« no previous file with comments | « tests/environment_variables/nacl.scons ('k') | tests/fake_browser_ppapi/nacl.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698