Revision f230a1cf deps/v8/Makefile

View differences:

deps/v8/Makefile
76 76
endif
77 77
# extrachecks=on/off
78 78
ifeq ($(extrachecks), on)
79
  GYPFLAGS += -Dv8_enable_extra_checks=1
79
  GYPFLAGS += -Dv8_enable_extra_checks=1 -Dv8_enable_handle_zapping=1
80 80
endif
81 81
ifeq ($(extrachecks), off)
82
  GYPFLAGS += -Dv8_enable_extra_checks=0
82
  GYPFLAGS += -Dv8_enable_extra_checks=0 -Dv8_enable_handle_zapping=0
83 83
endif
84 84
# gdbjit=on/off
85 85
ifeq ($(gdbjit), on)
......
124 124
ifeq ($(regexp), interpreted)
125 125
  GYPFLAGS += -Dv8_interpreted_regexp=1
126 126
endif
127
# i18nsupport=on
128
ifeq ($(i18nsupport), on)
129
  GYPFLAGS += -Dv8_enable_i18n_support=1
127
# i18nsupport=off
128
ifeq ($(i18nsupport), off)
129
  GYPFLAGS += -Dv8_enable_i18n_support=0
130
  TESTFLAGS += --noi18n
130 131
endif
132
# deprecation_warnings=on
133
ifeq ($(deprecationwarnings), on)
134
  GYPFLAGS += -Dv8_deprecation_warnings=1
135
endif 
131 136
# arm specific flags.
132 137
# armv7=false/true
133 138
ifeq ($(armv7), false)
......
217 222

  
218 223
# List of files that trigger Makefile regeneration:
219 224
GYPFILES = build/all.gyp build/features.gypi build/standalone.gypi \
220
	   build/toolchain.gypi preparser/preparser.gyp samples/samples.gyp \
221
	   src/d8.gyp test/cctest/cctest.gyp tools/gyp/v8.gyp
225
           build/toolchain.gypi samples/samples.gyp src/d8.gyp \
226
           test/cctest/cctest.gyp tools/gyp/v8.gyp
222 227

  
223 228
# If vtunejit=on, the v8vtune.gyp will be appended.
224 229
ifeq ($(vtunejit), on)
......
323 328
	@tools/run-tests.py $(TESTJOBS) --outdir=$(OUTDIR) \
324 329
	     --arch-and-mode=$(basename $@) \
325 330
	     --timeout=600 \
326
	     --command-prefix="tools/android-run.py"
331
	     --command-prefix="tools/android-run.py" $(TESTFLAGS)
327 332

  
328 333
$(addsuffix .check, $(ANDROID_ARCHES)): \
329 334
                $(addprefix $$(basename $$@).,$(MODES)).check
......
331 336
$(addsuffix .check, $(NACL_BUILDS)): $$(basename $$@)
332 337
	@tools/run-tests.py $(TESTJOBS) --outdir=$(OUTDIR) \
333 338
	     --arch-and-mode=$(basename $@) \
334
	     --timeout=600 --nopresubmit \
339
	     --timeout=600 --nopresubmit --noi18n \
335 340
	     --command-prefix="tools/nacl-run.py"
336 341

  
337 342
$(addsuffix .check, $(NACL_ARCHES)): \

Also available in: Unified diff