| 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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 GYPFLAGS += -Dv8_deprecation_warnings=1 | 139 GYPFLAGS += -Dv8_deprecation_warnings=1 |
| 140 endif | 140 endif |
| 141 # vectorstores=on | 141 # vectorstores=on |
| 142 ifeq ($(vectorstores), on) | 142 ifeq ($(vectorstores), on) |
| 143 GYPFLAGS += -Dv8_vector_stores=1 | 143 GYPFLAGS += -Dv8_vector_stores=1 |
| 144 endif | 144 endif |
| 145 # imminentdeprecationwarnings=on | 145 # imminentdeprecationwarnings=on |
| 146 ifeq ($(imminentdeprecationwarnings), on) | 146 ifeq ($(imminentdeprecationwarnings), on) |
| 147 GYPFLAGS += -Dv8_imminent_deprecation_warnings=1 | 147 GYPFLAGS += -Dv8_imminent_deprecation_warnings=1 |
| 148 endif | 148 endif |
| 149 ifeq ($(pg), on) |
| 150 GYPFLAGS += -Dpg=1 |
| 151 endif |
| 152 ifeq ($(finstrument), on) |
| 153 GYPFLAGS += -Dfinstrument=1 |
| 154 endif |
| 149 # asan=on | 155 # asan=on |
| 150 ifeq ($(asan), on) | 156 ifeq ($(asan), on) |
| 151 GYPFLAGS += -Dasan=1 -Dclang=1 | 157 GYPFLAGS += -Dasan=1 -Dclang=1 |
| 152 TESTFLAGS += --asan | 158 TESTFLAGS += --asan |
| 153 ifeq ($(lsan), on) | 159 ifeq ($(lsan), on) |
| 154 GYPFLAGS += -Dlsan=1 | 160 GYPFLAGS += -Dlsan=1 |
| 155 endif | 161 endif |
| 156 endif | 162 endif |
| 157 ifdef embedscript | 163 ifdef embedscript |
| 158 GYPFLAGS += -Dembed_script=$(embedscript) | 164 GYPFLAGS += -Dembed_script=$(embedscript) |
| (...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 486 tags: gtags.files $(wildcard $(shell cat gtags.files 2> /dev/null)) | 492 tags: gtags.files $(wildcard $(shell cat gtags.files 2> /dev/null)) |
| 487 @(ctags --version | grep 'Exuberant Ctags' >/dev/null) || \ | 493 @(ctags --version | grep 'Exuberant Ctags' >/dev/null) || \ |
| 488 (echo "Please install Exuberant Ctags (check 'ctags --version')"
>&2; false) | 494 (echo "Please install Exuberant Ctags (check 'ctags --version')"
>&2; false) |
| 489 ctags --fields=+l -L $< | 495 ctags --fields=+l -L $< |
| 490 | 496 |
| 491 tags.clean: | 497 tags.clean: |
| 492 rm -r tags | 498 rm -r tags |
| 493 | 499 |
| 494 dependencies builddeps: | 500 dependencies builddeps: |
| 495 $(error Use 'gclient sync' instead) | 501 $(error Use 'gclient sync' instead) |
| OLD | NEW |