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

Unified Diff: Makefile

Issue 9546051: Fix compile with debuggersupport=off. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 9 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 | src/d8.gyp » ('j') | test/mjsunit/regress/regress-1229.js » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Makefile
diff --git a/Makefile b/Makefile
index 73e84216b4d9c470b6e9bcadfd7ea7b7af53a651..5dc6ca5ad608a1510180f740578cc616fa1b5ecf 100644
--- a/Makefile
+++ b/Makefile
@@ -75,6 +75,10 @@ ifeq ($(vfp3), off)
else
GYPFLAGS += -Dv8_can_use_vfp_instructions=true
Yang 2012/03/07 10:47:41 @Jakob: Is there any reason why we have true/false
endif
+# debuggersupport=off
+ifeq ($(debuggersupport), off)
+ GYPFLAGS += -Dv8_enable_debugger_support=0
+endif
# soname_version=1.2.3
ifdef soname_version
GYPFLAGS += -Dsoname_version=$(soname_version)
« no previous file with comments | « no previous file | src/d8.gyp » ('j') | test/mjsunit/regress/regress-1229.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698