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

Unified Diff: tests/ppapi_proxy/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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/ppapi_ppb_scrollbar/nacl.scons ('k') | tests/ppapi_simple_tests/nacl.scons » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/ppapi_proxy/nacl.scons
===================================================================
--- tests/ppapi_proxy/nacl.scons (revision 5777)
+++ tests/ppapi_proxy/nacl.scons (working copy)
@@ -11,8 +11,9 @@
basic_obj_sources = env.ComponentObject('basic_object.cc'),
-basic_obj_target = 'ppapi_basic_object_%s.nexe' % env.get('TARGET_FULLARCH')
-env.Alias('ppapi_basic_object.nexe', ['$STAGING_DIR/%s' % basic_obj_target])
+basic_obj_target = 'ppapi_basic_object_%s' % env.get('TARGET_FULLARCH')
+env.Alias('ppapi_basic_object${PROGSUFFIX}',
+ ['$STAGING_DIR/%s${PROGSUFFIX}' % basic_obj_target])
basic_object_nexe = env.ComponentProgram(basic_obj_target,
[basic_obj_sources],
EXTRA_LIBS=['${PPAPI_LIBS}'])
@@ -26,8 +27,9 @@
'browserdata/nacltest.js')])
env.Depends(basic_obj_target, dest_copy)
-user_main_target = 'ppapi_user_main_%s.nexe' % env.get('TARGET_FULLARCH')
-env.Alias('ppapi_user_main.nexe', ['$STAGING_DIR/%s' % user_main_target])
+user_main_target = 'ppapi_user_main_%s' % env.get('TARGET_FULLARCH')
+env.Alias('ppapi_user_main${PROGSUFFIX}',
+ ['$STAGING_DIR/%s${PROGSUFFIX}' % user_main_target])
user_main_nexe = env.ComponentProgram(user_main_target,
[basic_obj_sources, 'user_main.cc',],
EXTRA_LIBS=['${PPAPI_LIBS}'])
@@ -49,8 +51,9 @@
'run_ppapi_basic_object_browser_test',
is_broken=env.PPAPIBrowserTesterIsBroken())
-event_target = 'ppapi_event_example_%s.nexe' % env.get('TARGET_FULLARCH')
-env.Alias('ppapi_event_example.nexe', ['$STAGING_DIR/%s' % event_target])
+event_target = 'ppapi_event_example_%s' % env.get('TARGET_FULLARCH')
+env.Alias('ppapi_event_example${PROGSUFFIX}',
+ ['$STAGING_DIR/%s${PROGSUFFIX}' % event_target])
event_example_nexe = env.ComponentProgram(event_target,
['event_example.cc',],
EXTRA_LIBS=['${PPAPI_LIBS}',
« no previous file with comments | « tests/ppapi_ppb_scrollbar/nacl.scons ('k') | tests/ppapi_simple_tests/nacl.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698