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

Unified Diff: SConstruct

Issue 10834447: Scons: Drop the uses_ppapi argument from CommandSelLdrTestNacl() (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: initial Created 8 years, 4 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 | « no previous file | src/untrusted/irt/irt.gyp » ('j') | src/untrusted/irt/irt.gyp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: SConstruct
diff --git a/SConstruct b/SConstruct
index f9483da121c887874a2e06ede1eaccb6eb509b9e..5514232bcf4a44ab5ee268039a180a1e6f60456f 100755
--- a/SConstruct
+++ b/SConstruct
@@ -1446,7 +1446,7 @@ def CommandSelLdrTestNacl(env, name, nexe,
size='medium',
# True for *.nexe statically linked with glibc
glibc_static=False,
- uses_ppapi=False,
+ uses_irt=False,
skip_bootstrap=False,
wrapper_program_prefix=None,
# e.g., [ 'python', 'time_check.py', '--' ]
@@ -1507,8 +1507,8 @@ def CommandSelLdrTestNacl(env, name, nexe,
# Enable file access.
sel_ldr_flags += ['-a']
- if env.Bit('tests_use_irt') or uses_ppapi:
- sel_ldr_flags += ['-B', nacl_env.GetIrtNexe(chrome_irt=uses_ppapi)]
+ if env.Bit('tests_use_irt') or uses_irt:
+ sel_ldr_flags += ['-B', nacl_env.GetIrtNexe()]
Nick Bray (chromium) 2012/08/22 22:24:13 Does anyone else use this flag? Should it be remo
if skip_bootstrap:
loader_cmd = [loader]
« no previous file with comments | « no previous file | src/untrusted/irt/irt.gyp » ('j') | src/untrusted/irt/irt.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698