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

Unified Diff: SConstruct

Issue 539683002: MinSFI: Add loader (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: Fixed nits Created 6 years, 3 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 | buildbot/buildbot_pnacl.py » ('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 3a4334086f015538ba80b55970bcfb97bbb79d5b..1ac1ecd90445f367beec876f1b62e136237d43ce 100755
--- a/SConstruct
+++ b/SConstruct
@@ -330,6 +330,9 @@ def SetUpArgumentBits(env):
BitFromArgument(env, 'pnacl_unsandboxed', default=False,
desc='Translate pexe to an unsandboxed, host executable')
+ BitFromArgument(env, 'minsfi', default=False,
+ desc='Build MinSFI libraries and run tests')
+
BitFromArgument(env, 'nonsfi_nacl', default=False,
desc='Use Non-SFI Mode instead of the original SFI Mode. This uses '
'nonsfi_loader instead of sel_ldr, and it tells the PNaCl toolchain '
@@ -721,6 +724,7 @@ ACCEPTABLE_TEST_SUITES = set([
'exit_status_tests',
'gdb_tests',
'mmap_race_tests',
+ 'minsfi_tests',
'nonpexe_tests',
'performance_tests',
'pnacl_abi_tests',
@@ -2206,6 +2210,7 @@ def MakeBaseTrustedEnv(platform=None):
# KEEP THIS SORTED PLEASE
'build/package_version/build.scons',
'pynacl/build.scons',
+ 'src/minsfi/trusted/build.scons',
'src/nonsfi/irt/build.scons',
'src/nonsfi/loader/build.scons',
'src/shared/gio/build.scons',
@@ -3306,6 +3311,7 @@ irt_variant_tests = [
'tests/mandel/nacl.scons',
'tests/math/nacl.scons',
'tests/memcheck_test/nacl.scons',
+ 'tests/minsfi/nacl.scons',
'tests/mmap/nacl.scons',
'tests/mmap_main_nexe/nacl.scons',
'tests/mmap_prot_exec/nacl.scons',
« no previous file with comments | « no previous file | buildbot/buildbot_pnacl.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698