Skip to content

Commit 0cb0f4a

Browse files
skomskirvagg
authored andcommitted
build: fix v8_enable_handle_zapping override
It was previously ignored by features.gypi and therefore enabled by default for release builds. See https://code.google.com/p/chromium/issues/detail?id=318206 PR-URL: #2731 Reviewed-By: Fedor Indutny <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]>
1 parent 9358eee commit 0cb0f4a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

common.gypi

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
'configurations': {
5757
'Debug': {
5858
'variables': {
59-
'v8_enable_handle_zapping%': 1,
59+
'v8_enable_handle_zapping': 1,
6060
},
6161
'defines': [ 'DEBUG', '_DEBUG' ],
6262
'cflags': [ '-g', '-O0' ],
@@ -83,7 +83,7 @@
8383
},
8484
'Release': {
8585
'variables': {
86-
'v8_enable_handle_zapping%': 0,
86+
'v8_enable_handle_zapping': 0,
8787
},
8888
'cflags': [ '-O3', '-ffunction-sections', '-fdata-sections' ],
8989
'conditions': [

0 commit comments

Comments
 (0)