Skip to content

Commit

Permalink
deps: patch V8 to 6.4.388.45
Browse files Browse the repository at this point in the history
Refs: v8/v8@6.4.388.44...6.4.388.45

PR-URL: #18751
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
MylesBorins authored and targos committed Feb 16, 2018
1 parent 181209c commit 36386dc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 11 deletions.
15 changes: 5 additions & 10 deletions deps/v8/gypfiles/gyp_v8
Original file line number Diff line number Diff line change
Expand Up @@ -108,19 +108,14 @@ def run_gyp(args):
if __name__ == '__main__':
args = sys.argv[1:]

gyp_chromium_no_action = os.environ.get('GYP_CHROMIUM_NO_ACTION')
if gyp_chromium_no_action == '1':
print 'Skipping gyp_v8 due to GYP_CHROMIUM_NO_ACTION env var.'
gyp_chromium_no_action = os.environ.get('GYP_CHROMIUM_NO_ACTION', '1')
if gyp_chromium_no_action != '0':
print 'GYP is now disabled by default.\n'
print 'If you really want to run this, set the environment variable '
print 'GYP_CHROMIUM_NO_ACTION=0.'
sys.exit(0)

running_as_hook = '--running-as-hook'
if running_as_hook in args and gyp_chromium_no_action != '0':
print 'GYP is now disabled by default in runhooks.\n'
print 'If you really want to run this, either run '
print '`python gypfiles/gyp_v8` explicitly by hand '
print 'or set the environment variable GYP_CHROMIUM_NO_ACTION=0.'
sys.exit(0)

if running_as_hook in args:
args.remove(running_as_hook)

Expand Down
2 changes: 1 addition & 1 deletion deps/v8/include/v8-version.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#define V8_MAJOR_VERSION 6
#define V8_MINOR_VERSION 4
#define V8_BUILD_NUMBER 388
#define V8_PATCH_LEVEL 44
#define V8_PATCH_LEVEL 45

// Use 1 for candidates and 0 otherwise.
// (Boolean macro values are not supported by all preprocessors.)
Expand Down

0 comments on commit 36386dc

Please sign in to comment.