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

Unified Diff: ppapi/native_client/tests/ppapi_tests/nacl.scons

Issue 8666009: Fix ppapi/native_client/tests/ppapi_tests/nacl.scons to match test_case.nmf (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698