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

Unified Diff: src/untrusted/valgrind/nacl.scons

Issue 758223003: Cleanup: Use Bit('build_ARCH') instead of Bit('target_ARCH') (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Fix + simplify Created 6 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 | « src/untrusted/pthread/nacl.scons ('k') | tests/gdb/nacl.scons » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/untrusted/valgrind/nacl.scons
diff --git a/src/untrusted/valgrind/nacl.scons b/src/untrusted/valgrind/nacl.scons
index ed44d9652e44d5c6272142d7a2bdf61c07adfa7d..41c9a61c6bbdf0934327efc2a1d87f8248c5c33a 100644
--- a/src/untrusted/valgrind/nacl.scons
+++ b/src/untrusted/valgrind/nacl.scons
@@ -10,7 +10,7 @@ Import('env')
# we do not have proper arm support and definitely no bitcode support
# BUG= http://code.google.com/p/nativeclient/issues/detail?id=2357
-if env.Bit('target_arm') or env.Bit('bitcode'):
+if env.Bit('build_arm') or env.Bit('bitcode'):
Return()
libvalgrind = env.NaClSdkLibrary('libvalgrind', 'valgrind_interceptors.c')
« no previous file with comments | « src/untrusted/pthread/nacl.scons ('k') | tests/gdb/nacl.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698