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

Unified Diff: tests/pyauto_nacl/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_tests/nacl.scons ('k') | tests/redir/nacl.scons » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/pyauto_nacl/nacl.scons
===================================================================
--- tests/pyauto_nacl/nacl.scons (revision 5777)
+++ tests/pyauto_nacl/nacl.scons (working copy)
@@ -6,17 +6,17 @@
Import('env')
platform = env.get('TARGET_FULLARCH')
-cat_nexe_name = 'cat_%s.nexe' % platform
-ppapi_basic_object_nexe_name = 'ppapi_basic_object_%s.nexe' % platform
-ppapi_event_example_nexe_name = 'ppapi_event_example_%s.nexe' % platform
-ppapi_user_main_nexe_name = 'ppapi_user_main_%s.nexe' % platform
-srpc_test_nexe_name = 'srpc_test_%s.nexe' % platform
-srpc_hw_nexe_name = 'srpc_hw_%s.nexe' % platform
-srpc_nrd_client_nexe_name = 'srpc_nrd_client_%s.nexe' % platform
-srpc_nrd_server_nexe_name = 'srpc_nrd_server_%s.nexe' % platform
+cat_nexe_name = 'cat_%s${PROGSUFFIX}' % platform
+ppapi_basic_object_nexe_name = 'ppapi_basic_object_%s${PROGSUFFIX}' % platform
+ppapi_event_example_nexe_name = 'ppapi_event_example_%s${PROGSUFFIX}' % platform
+ppapi_user_main_nexe_name = 'ppapi_user_main_%s${PROGSUFFIX}' % platform
+srpc_test_nexe_name = 'srpc_test_%s${PROGSUFFIX}' % platform
+srpc_hw_nexe_name = 'srpc_hw_%s${PROGSUFFIX}' % platform
+srpc_nrd_client_nexe_name = 'srpc_nrd_client_%s${PROGSUFFIX}' % platform
+srpc_nrd_server_nexe_name = 'srpc_nrd_server_%s${PROGSUFFIX}' % platform
def CreateDefaultDeps(base_name):
- return [env.File('${STAGING_DIR}/' + base_name + '_%s.nexe' % platform),
+ return [env.File('${STAGING_DIR}/' + base_name + '_%s${PROGSUFFIX}' % platform),
env.File('${STAGING_DIR}/' + base_name + '.html'),
env.File('${STAGING_DIR}/' + base_name + '.nmf')]
@@ -43,7 +43,7 @@
env.File('${STAGING_DIR}/ppapi_progress_events.js')]
ppapi_test_example_files = CreateDefaultDeps('ppapi_test_example')
ppapi_tests_files = [
- env.File('${STAGING_DIR}/ppapi_tests_%s.nexe' % platform),
+ env.File('${STAGING_DIR}/ppapi_tests_%s${PROGSUFFIX}' % platform),
env.Dir('${STAGING_DIR}/test_url_loader_data/'),
env.File('${STAGING_DIR}/test_case.html'),
env.File('${STAGING_DIR}/test_case.nmf'),
« no previous file with comments | « tests/ppapi_tests/nacl.scons ('k') | tests/redir/nacl.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698