| OLD | NEW | 
|---|
| 1 # Copyright 2012 the V8 project authors. All rights reserved. | 1 # Copyright 2012 the V8 project authors. All rights reserved. | 
| 2 # Redistribution and use in source and binary forms, with or without | 2 # Redistribution and use in source and binary forms, with or without | 
| 3 # modification, are permitted provided that the following conditions are | 3 # modification, are permitted provided that the following conditions are | 
| 4 # met: | 4 # met: | 
| 5 # | 5 # | 
| 6 #     * Redistributions of source code must retain the above copyright | 6 #     * Redistributions of source code must retain the above copyright | 
| 7 #       notice, this list of conditions and the following disclaimer. | 7 #       notice, this list of conditions and the following disclaimer. | 
| 8 #     * Redistributions in binary form must reproduce the above | 8 #     * Redistributions in binary form must reproduce the above | 
| 9 #       copyright notice, this list of conditions and the following | 9 #       copyright notice, this list of conditions and the following | 
| 10 #       disclaimer in the documentation and/or other materials provided | 10 #       disclaimer in the documentation and/or other materials provided | 
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 72 # vfp3=off | 72 # vfp3=off | 
| 73 ifeq ($(vfp3), off) | 73 ifeq ($(vfp3), off) | 
| 74   GYPFLAGS += -Dv8_can_use_vfp_instructions=false | 74   GYPFLAGS += -Dv8_can_use_vfp_instructions=false | 
| 75 else | 75 else | 
| 76   GYPFLAGS += -Dv8_can_use_vfp_instructions=true | 76   GYPFLAGS += -Dv8_can_use_vfp_instructions=true | 
| 77 endif | 77 endif | 
| 78 # debuggersupport=off | 78 # debuggersupport=off | 
| 79 ifeq ($(debuggersupport), off) | 79 ifeq ($(debuggersupport), off) | 
| 80   GYPFLAGS += -Dv8_enable_debugger_support=0 | 80   GYPFLAGS += -Dv8_enable_debugger_support=0 | 
| 81 endif | 81 endif | 
|  | 82 # postmortem=on | 
|  | 83 ifeq ($(postmortem), on) | 
|  | 84   GYPFLAGS += -Dv8_postmortem_support=true | 
|  | 85 endif | 
| 82 # soname_version=1.2.3 | 86 # soname_version=1.2.3 | 
| 83 ifdef soname_version | 87 ifdef soname_version | 
| 84   GYPFLAGS += -Dsoname_version=$(soname_version) | 88   GYPFLAGS += -Dsoname_version=$(soname_version) | 
| 85 endif | 89 endif | 
| 86 # werror=no | 90 # werror=no | 
| 87 ifeq ($(werror), no) | 91 ifeq ($(werror), no) | 
| 88   GYPFLAGS += -Dwerror='' | 92   GYPFLAGS += -Dwerror='' | 
| 89 endif | 93 endif | 
| 90 # presubmit=no | 94 # presubmit=no | 
| 91 ifeq ($(presubmit), no) | 95 ifeq ($(presubmit), no) | 
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 261 | 265 | 
| 262 # Stores current GYPFLAGS in a file. | 266 # Stores current GYPFLAGS in a file. | 
| 263 $(ENVFILE).new: | 267 $(ENVFILE).new: | 
| 264         @mkdir -p $(OUTDIR); echo "GYPFLAGS=$(GYPFLAGS)" > $(ENVFILE).new; \ | 268         @mkdir -p $(OUTDIR); echo "GYPFLAGS=$(GYPFLAGS)" > $(ENVFILE).new; \ | 
| 265             echo "CXX=$(CXX)" >> $(ENVFILE).new | 269             echo "CXX=$(CXX)" >> $(ENVFILE).new | 
| 266 | 270 | 
| 267 # Dependencies. | 271 # Dependencies. | 
| 268 dependencies: | 272 dependencies: | 
| 269         svn checkout --force http://gyp.googlecode.com/svn/trunk build/gyp \ | 273         svn checkout --force http://gyp.googlecode.com/svn/trunk build/gyp \ | 
| 270             --revision 1282 | 274             --revision 1282 | 
| OLD | NEW | 
|---|