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

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: add nonirt_libs 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 | tests/manifest_file/nacl.scons » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: SConstruct
diff --git a/SConstruct b/SConstruct
index 55548f0d53d9f1f6f0296714fd59b82f30518954..df0438855bc414debbff0037a6d22552d9f2205f 100755
--- a/SConstruct
+++ b/SConstruct
@@ -1446,7 +1446,6 @@ def CommandSelLdrTestNacl(env, name, nexe,
size='medium',
# True for *.nexe statically linked with glibc
glibc_static=False,
- uses_ppapi=False,
skip_bootstrap=False,
wrapper_program_prefix=None,
# e.g., [ 'python', 'time_check.py', '--' ]
@@ -1507,8 +1506,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'):
+ sel_ldr_flags += ['-B', nacl_env.GetIrtNexe()]
if skip_bootstrap:
loader_cmd = [loader]
« no previous file with comments | « no previous file | tests/manifest_file/nacl.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698