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

Unified Diff: ppapi/native_client/chrome_main.scons

Issue 778173002: NaCl cleanup: Use Bit('build_ARCH') instead of Bit('target_ARCH') (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 6 years 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/chrome_main.scons
diff --git a/ppapi/native_client/chrome_main.scons b/ppapi/native_client/chrome_main.scons
index 2e75425731cb9b4929e7cd4c21e507ced28a16dc..a057cc0600ec648595be866358e926c00eecba85 100644
--- a/ppapi/native_client/chrome_main.scons
+++ b/ppapi/native_client/chrome_main.scons
@@ -535,7 +535,7 @@ pre_base_env.AddMethod(PPAPIBrowserTester)
# Disabled for ARM and MIPS because Chrome binaries for ARM and MIPS are not
# available.
def PPAPIBrowserTesterIsBroken(env):
- return env.Bit('target_arm') or env.Bit('target_mips32')
+ return env.Bit('build_arm') or env.Bit('build_mips32')
pre_base_env.AddMethod(PPAPIBrowserTesterIsBroken)
« 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