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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 GYPFLAGS += -Dconsole=$(console) | 51 GYPFLAGS += -Dconsole=$(console) |
52 endif | 52 endif |
53 # disassembler=on | 53 # disassembler=on |
54 ifeq ($(disassembler), on) | 54 ifeq ($(disassembler), on) |
55 GYPFLAGS += -Dv8_enable_disassembler=1 | 55 GYPFLAGS += -Dv8_enable_disassembler=1 |
56 endif | 56 endif |
57 # objectprint=on | 57 # objectprint=on |
58 ifeq ($(objectprint), on) | 58 ifeq ($(objectprint), on) |
59 GYPFLAGS += -Dv8_object_print=1 | 59 GYPFLAGS += -Dv8_object_print=1 |
60 endif | 60 endif |
| 61 # verifyheap=on |
| 62 ifeq ($(verifyheap), on) |
| 63 GYPFLAGS += -Dv8_enable_verify_heap=1 |
| 64 endif |
61 # snapshot=off | 65 # snapshot=off |
62 ifeq ($(snapshot), off) | 66 ifeq ($(snapshot), off) |
63 GYPFLAGS += -Dv8_use_snapshot='false' | 67 GYPFLAGS += -Dv8_use_snapshot='false' |
64 endif | 68 endif |
65 # extrachecks=on/off | 69 # extrachecks=on/off |
66 ifeq ($(extrachecks), on) | 70 ifeq ($(extrachecks), on) |
67 GYPFLAGS += -Dv8_enable_extra_checks=1 | 71 GYPFLAGS += -Dv8_enable_extra_checks=1 |
68 endif | 72 endif |
69 ifeq ($(extrachecks), off) | 73 ifeq ($(extrachecks), off) |
70 GYPFLAGS += -Dv8_enable_extra_checks=0 | 74 GYPFLAGS += -Dv8_enable_extra_checks=0 |
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
277 # Stores current GYPFLAGS in a file. | 281 # Stores current GYPFLAGS in a file. |
278 $(ENVFILE).new: | 282 $(ENVFILE).new: |
279 @mkdir -p $(OUTDIR); echo "GYPFLAGS=$(GYPFLAGS)" > $(ENVFILE).new; \ | 283 @mkdir -p $(OUTDIR); echo "GYPFLAGS=$(GYPFLAGS)" > $(ENVFILE).new; \ |
280 echo "CXX=$(CXX)" >> $(ENVFILE).new | 284 echo "CXX=$(CXX)" >> $(ENVFILE).new |
281 | 285 |
282 # Dependencies. | 286 # Dependencies. |
283 # Remember to keep these in sync with the DEPS file. | 287 # Remember to keep these in sync with the DEPS file. |
284 dependencies: | 288 dependencies: |
285 svn checkout --force http://gyp.googlecode.com/svn/trunk build/gyp \ | 289 svn checkout --force http://gyp.googlecode.com/svn/trunk build/gyp \ |
286 --revision 1501 | 290 --revision 1501 |
OLD | NEW |