File tree 2 files changed +9
-4
lines changed
2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 45
45
# Old time default, now explicitly stated.
46
46
'v8_use_snapshot' : 'true' ,
47
47
48
+ # These are more relevant for V8 internal development.
48
49
# Refs: https://github.com/nodejs/node/issues/23122
49
50
# Refs: https://github.com/nodejs/node/issues/23167
50
- # Enable compiler warnings when using V8_DEPRECATED apis.
51
- 'v8_deprecation_warnings' : 1 ,
52
- # Enable compiler warnings when using V8_DEPRECATE_SOON apis.
53
- 'v8_imminent_deprecation_warnings' : 1 ,
51
+ # Enable compiler warnings when using V8_DEPRECATED apis from V8 code .
52
+ 'v8_deprecation_warnings' : 0 ,
53
+ # Enable compiler warnings when using V8_DEPRECATE_SOON apis from V8 code .
54
+ 'v8_imminent_deprecation_warnings' : 0 ,
54
55
55
56
# Enable disassembler for `--print-code` v8 options
56
57
'v8_enable_disassembler' : 1 ,
Original file line number Diff line number Diff line change 164
164
}],
165
165
['v8_deprecation_warnings==1' , {
166
166
'defines' : ['V8_DEPRECATION_WARNINGS' ,],
167
+ },{
168
+ 'defines!' : ['V8_DEPRECATION_WARNINGS' ,],
167
169
}],
168
170
['v8_imminent_deprecation_warnings==1' , {
169
171
'defines' : ['V8_IMMINENT_DEPRECATION_WARNINGS' ,],
172
+ },{
173
+ 'defines!' : ['V8_IMMINENT_DEPRECATION_WARNINGS' ,],
170
174
}],
171
175
['v8_enable_i18n_support==1' , {
172
176
'defines' : ['V8_INTL_SUPPORT' ,],
You can’t perform that action at this time.
0 commit comments