Skip to content

Commit

Permalink
deps: update v8.gyp and features.gypi
Browse files Browse the repository at this point in the history
until 9365d0904eb7e50bfc7ae6640d939fb924440ce2
  • Loading branch information
ryzokuken authored and nodejs-ci committed Jan 2, 2019
1 parent 44d427d commit 891adff
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
12 changes: 4 additions & 8 deletions deps/v8/gypfiles/features.gypi
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,6 @@

'v8_enable_gdbjit%': 0,

# Build-time flag for enabling nojit mode.
# TODO(v8:7777): Remove the build-time flag once the --jitless runtime flag
# does everything we need.
'v8_enable_jitless_mode%': 0,

# Enable code-generation-time checking of types in the CodeStubAssembler.
'v8_enable_verify_csa%': 0,

Expand Down Expand Up @@ -144,6 +139,10 @@
}],
['v8_enable_lite_mode==1', {
'defines': ['V8_LITE_MODE',],

# TODO(v8:7777): Remove the define once the --jitless runtime flag does
# everything we need.
'defines': ['V8_JITLESS_MODE', ],
}],
['v8_enable_gdbjit==1', {
'defines': ['ENABLE_GDB_JIT_INTERFACE',],
Expand Down Expand Up @@ -208,9 +207,6 @@
'V8_EMBEDDED_BUILTINS',
],
}],
['v8_enable_jitless_mode==1', {
'defines': ['V8_JITLESS_MODE',],
}],
], # conditions
'defines': [
'V8_GYP_BUILD',
Expand Down
3 changes: 2 additions & 1 deletion deps/v8/gypfiles/v8.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,6 @@
'v8_target_cpu=<(v8_target_arch)',
'v8_use_snapshot=<(v8_use_snapshot)',
'v8_enable_embedded_builtins=<(v8_enable_embedded_builtins)',
'v8_enable_jitless_mode=<(v8_enable_jitless_mode)',
'v8_enable_verify_csa=<(v8_enable_verify_csa)',
'v8_enable_lite_mode=<(v8_enable_lite_mode)',
'v8_enable_pointer_compression=<(v8_enable_pointer_compression)',
Expand Down Expand Up @@ -643,6 +642,8 @@
'../src/ast/prettyprinter.h',
'../src/ast/scopes.cc',
'../src/ast/scopes.h',
'../src/ast/source-range-ast-visitor.cc',
'../src/ast/source-range-ast-visitor.h',
'../src/ast/variables.cc',
'../src/ast/variables.h',
'../src/bailout-reason.cc',
Expand Down

0 comments on commit 891adff

Please sign in to comment.