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

Unified Diff: tools/scons_to_gn/test.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 | « tests/gdb/nacl.scons ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/scons_to_gn/test.scons
diff --git a/tools/scons_to_gn/test.scons b/tools/scons_to_gn/test.scons
index d5055a73f7add96d9ac75d7761b6468b503eabd6..31b1c58c65a67f567c6e197370b3a66760de47cb 100644
--- a/tools/scons_to_gn/test.scons
+++ b/tools/scons_to_gn/test.scons
@@ -9,9 +9,9 @@ defines = []
if env.Bit('win'):
sources += ['win']
-if env.Bit('target_x86_32'):
+if env.Bit('build_x86_32'):
defines += ['_x86']
-if env.Bit('target_x86_64'):
+if env.Bit('build_x86_64'):
defines += ['_x64']
if True:
« no previous file with comments | « tests/gdb/nacl.scons ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698