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

Unified Diff: Makefile

Issue 1149633003: Introduce a new gyp flag to warn about to be deprecated APIs (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 7 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
« no previous file with comments | « no previous file | build/features.gypi » ('j') | include/v8config.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Makefile
diff --git a/Makefile b/Makefile
index db6cf3b7da534a90d16e262b9c81601cc8dd4419..deab053ce2f04406f83c73d1ebd469ec4a00922d 100644
--- a/Makefile
+++ b/Makefile
@@ -149,6 +149,10 @@ endif
ifeq ($(deprecationwarnings), on)
GYPFLAGS += -Dv8_deprecation_warnings=1
endif
+# imminent_deprecation_warnings=on
vogelheim 2015/05/21 09:17:09 spelling? I take it the comment is meant to docum
+ifeq ($(imminent_deprecationwarnings), on)
+ GYPFLAGS += -Dv8_imminent_deprecation_warnings=1
+endif
# asan=on
ifeq ($(asan), on)
GYPFLAGS += -Dasan=1 -Dclang=1
« no previous file with comments | « no previous file | build/features.gypi » ('j') | include/v8config.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698