Index: ppapi/native_client/tests/ppapi_tests/nacl.scons |
diff --git a/ppapi/native_client/tests/ppapi_tests/nacl.scons b/ppapi/native_client/tests/ppapi_tests/nacl.scons |
index 685ddc8b61e9d5d74e5bbface36294f3dfb14354..b590a84f38721395af78e9310599b28d8fd2eac5 100644 |
--- a/ppapi/native_client/tests/ppapi_tests/nacl.scons |
+++ b/ppapi/native_client/tests/ppapi_tests/nacl.scons |
@@ -6,7 +6,17 @@ |
Import('env') |
import os |
-ppapi_tests_target = 'ppapi_tests_${TARGET_FULLARCH}' |
+if env.Bit('nacl_glibc'): |
+ Return() |
+ |
+fullarch_map = { |
+ 'x86-64': 'x64', |
+ 'x86-32': 'x32', |
+ 'arm': 'arm', |
+ } |
+ |
+ppapi_tests_target = ('ppapi_tests_newlib_%s' % |
+ fullarch_map[env['TARGET_FULLARCH']]) |
ppapi_tests_sources = [ |
# Common test files |