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

Unified Diff: tests/syscall_return_sandboxing/nacl.scons

Issue 12667019: [MIPS] Support for building tests for MIPS (Closed) Base URL: http://git.chromium.org/native_client/src/native_client.git@master
Patch Set: updates to sandboxed_mips.S. Created 7 years, 9 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
Index: tests/syscall_return_sandboxing/nacl.scons
diff --git a/tests/syscall_return_sandboxing/nacl.scons b/tests/syscall_return_sandboxing/nacl.scons
index 12ac5b6bec0d041da7b5155e09898815da15b0fb..da70c136b0bb68110276153e8c537ab2af088d58 100644
--- a/tests/syscall_return_sandboxing/nacl.scons
+++ b/tests/syscall_return_sandboxing/nacl.scons
@@ -18,6 +18,8 @@ def GetAssemblerFile(env):
return 'sandboxed_x86_64.S'
elif env.Bit('build_arm'):
return 'sandboxed_arm.S'
+ elif env.Bit('build_mips32'):
+ return 'sandboxed_mips.S'
else:
raise Exception('unknown architecture')

Powered by Google App Engine
This is Rietveld 408576698