| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 GYPFLAGS += -Dcomponent=$(component) | 44 GYPFLAGS += -Dcomponent=$(component) |
| 45 endif | 45 endif |
| 46 # disassembler=on | 46 # disassembler=on |
| 47 ifeq ($(disassembler), on) | 47 ifeq ($(disassembler), on) |
| 48 GYPFLAGS += -Dv8_enable_disassembler=1 | 48 GYPFLAGS += -Dv8_enable_disassembler=1 |
| 49 endif | 49 endif |
| 50 # objectprint=on | 50 # objectprint=on |
| 51 ifeq ($(objectprint), on) | 51 ifeq ($(objectprint), on) |
| 52 GYPFLAGS += -Dv8_object_print=1 | 52 GYPFLAGS += -Dv8_object_print=1 |
| 53 endif | 53 endif |
| 54 # verifycsa=on |
| 55 ifeq ($(verifycsa), on) |
| 56 GYPFLAGS += -Dv8_enable_verify_csa=1 |
| 57 endif |
| 54 # verifyheap=on | 58 # verifyheap=on |
| 55 ifeq ($(verifyheap), on) | 59 ifeq ($(verifyheap), on) |
| 56 GYPFLAGS += -Dv8_enable_verify_heap=1 | 60 GYPFLAGS += -Dv8_enable_verify_heap=1 |
| 57 endif | 61 endif |
| 58 # tracemaps=on | 62 # tracemaps=on |
| 59 ifeq ($(tracemaps), on) | 63 ifeq ($(tracemaps), on) |
| 60 GYPFLAGS += -Dv8_trace_maps=1 | 64 GYPFLAGS += -Dv8_trace_maps=1 |
| 61 endif | 65 endif |
| 62 # backtrace=off | 66 # backtrace=off |
| 63 ifeq ($(backtrace), off) | 67 ifeq ($(backtrace), off) |
| (...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 486 tags: gtags.files $(wildcard $(shell cat gtags.files 2> /dev/null)) | 490 tags: gtags.files $(wildcard $(shell cat gtags.files 2> /dev/null)) |
| 487 @(ctags --version | grep 'Exuberant Ctags' >/dev/null) || \ | 491 @(ctags --version | grep 'Exuberant Ctags' >/dev/null) || \ |
| 488 (echo "Please install Exuberant Ctags (check 'ctags --version')"
>&2; false) | 492 (echo "Please install Exuberant Ctags (check 'ctags --version')"
>&2; false) |
| 489 ctags --fields=+l -L $< | 493 ctags --fields=+l -L $< |
| 490 | 494 |
| 491 tags.clean: | 495 tags.clean: |
| 492 rm -r tags | 496 rm -r tags |
| 493 | 497 |
| 494 dependencies builddeps: | 498 dependencies builddeps: |
| 495 $(error Use 'gclient sync' instead) | 499 $(error Use 'gclient sync' instead) |
| OLD | NEW |