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

Unified Diff: tests/callingconv_ppapi/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/callingconv_ppapi/nacl.scons
diff --git a/tests/callingconv_ppapi/nacl.scons b/tests/callingconv_ppapi/nacl.scons
index 9ab310a7328506e48612841da5d6b034ac0c1c1a..ba230b705790cf45cd1fbef8d9c01243239e7b65 100644
--- a/tests/callingconv_ppapi/nacl.scons
+++ b/tests/callingconv_ppapi/nacl.scons
@@ -18,6 +18,11 @@ if env.Bit('pnacl_generate_pexe'):
if env.Bit('built_elsewhere'):
Return()
+# This test is disabled for MIPS because we do not have a MIPS-enabled nacl-gcc
+# to test PNaCl against.
+if env.Bit('target_mips32'):
+ Return()
+
env_pnacl_cc = env.Clone()
env_pnacl_cc.PNaClForceNative()
# for ppapi headers which include other ppapi headers

Powered by Google App Engine
This is Rietveld 408576698