Skip to content

Commit a4d67c9

Browse files
Vasili SkurydzinMylesBorins
Vasili Skurydzin
authored andcommitted
deps: cherry-pick a51f429 from V8 upstream
Original commit message: Use gn from PATH on aix Change-Id: I853f7899dbba9112ba1ca2ce78e2838b5a09c975 Reviewed-on: https://chromium-review.googlesource.com/1168087 Commit-Queue: John Barboza <[email protected]> Reviewed-by: Michael Achenbach <[email protected]> Cr-Commit-Position: refs/heads/master@{#55028} PR-URL: #23695 Reviewed-By: Michael Dawson <[email protected]> Reviewed-By: Refael Ackermann <[email protected]> Reviewed-By: Yang Guo <[email protected]> Reviewed-By: Ujjwal Sharma <[email protected]>
1 parent 01544e1 commit a4d67c9

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

common.gypi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
# Reset this number to 0 on major V8 upgrades.
3535
# Increment by one for each non-official patch applied to deps/v8.
36-
'v8_embedder_string': '-node.40',
36+
'v8_embedder_string': '-node.41',
3737

3838
# Enable disassembler for `--print-code` v8 options
3939
'v8_enable_disassembler': 1,

deps/v8/tools/mb/mb.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -832,14 +832,12 @@ def GNCmd(self, subcommand, path, *args):
832832
subdir, exe = 'linux64', 'gn'
833833
elif self.platform == 'darwin':
834834
subdir, exe = 'mac', 'gn'
835-
elif self.platform == 'aix6':
836-
subdir, exe = 'aix', 'gn'
837835
else:
838836
subdir, exe = 'win', 'gn.exe'
839837

840838
arch = platform.machine()
841-
if (self.platform == 'linux2' and
842-
(arch.startswith('s390') or arch.startswith('ppc'))):
839+
if (arch.startswith('s390') or arch.startswith('ppc') or
840+
self.platform.startswith('aix')):
843841
# use gn in PATH
844842
gn_path = 'gn'
845843
else:

0 commit comments

Comments
 (0)