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

Unified Diff: Makefile.standalone

Issue 1215463014: Modify how textual bitcode is injected into pnacl-sz. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 5 years, 5 months 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
Index: Makefile.standalone
diff --git a/Makefile.standalone b/Makefile.standalone
index b4c33b7c5a691c8c2bc4a608d09ca4e9093c584f..e06b99d491ba77f4ad24dae9ec54865f6e544eab 100644
--- a/Makefile.standalone
+++ b/Makefile.standalone
@@ -87,10 +87,10 @@ else
endif
ifdef TEXTUAL_BITCODE
Karl 2015/07/21 21:07:01 Removed this. No longer a build flag (its now a CL
- BASE_CXX_DEFINES += -DINPUT_IS_TEXTUAL_BITCODE=1
+ BASE_CXX_DEFINES += -DACCEPT_TEXTUAL_PNACL_BITCODE=1
OBJDIR := $(OBJDIR)+Tbc
else
- BASE_CXX_DEFINES += -DINPUT_IS_TEXTUAL_BITCODE=0
+ BASE_CXX_DEFINES += -DACCEPT_TEXTUAL_PNACL_BITCODE=0
endif
SB_CXX_DEFINES := $(BASE_CXX_DEFINES) -DPNACL_BROWSER_TRANSLATOR=1

Powered by Google App Engine
This is Rietveld 408576698