Skip to content

Commit 36386dc

Browse files
MylesBorinstargos
authored andcommitted
deps: patch V8 to 6.4.388.45
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>
1 parent 181209c commit 36386dc

File tree

2 files changed

+6
-11
lines changed

2 files changed

+6
-11
lines changed

deps/v8/gypfiles/gyp_v8

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -108,19 +108,14 @@ def run_gyp(args):
108108
if __name__ == '__main__':
109109
args = sys.argv[1:]
110110

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

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

deps/v8/include/v8-version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#define V8_MAJOR_VERSION 6
1212
#define V8_MINOR_VERSION 4
1313
#define V8_BUILD_NUMBER 388
14-
#define V8_PATCH_LEVEL 44
14+
#define V8_PATCH_LEVEL 45
1515

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

0 commit comments

Comments
 (0)