 Chromium Code Reviews
 Chromium Code Reviews Issue 9546051:
  Fix compile with debuggersupport=off.  (Closed) 
  Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
    
  
    Issue 9546051:
  Fix compile with debuggersupport=off.  (Closed) 
  Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge| 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) |