From 353e3f86c2c544126e2cb319dfc9b7382ab390fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Fri, 4 Nov 2022 11:37:36 +0100 Subject: [PATCH] deps: V8: backport a593addab794 Original commit message: [buildtools] skip fetching ninja and reclient on ppc/s390 platforms Above binaries do not exist on infra repositories for ppc/s390 and cause errors while fetching V8. Change-Id: I300127a71fc7c43426bc2140b5f24a63fa4a0c11 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3992966 Reviewed-by: Michael Achenbach Commit-Queue: Milad Farazmand Cr-Commit-Position: refs/heads/main@{#84037} Refs: https://github.com/v8/v8/commit/a593addab7945617f8c282a752d0d9904039727a --- common.gypi | 2 +- deps/v8/DEPS | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common.gypi b/common.gypi index 0df1792137febf..da2e7b0462dfa9 100644 --- a/common.gypi +++ b/common.gypi @@ -36,7 +36,7 @@ # Reset this number to 0 on major V8 upgrades. # Increment by one for each non-official patch applied to deps/v8. - 'v8_embedder_string': '-node.18', + 'v8_embedder_string': '-node.19', ##### V8 defaults for Node.js ##### diff --git a/deps/v8/DEPS b/deps/v8/DEPS index eb3bb4252e80a5..457fcc13f7477e 100644 --- a/deps/v8/DEPS +++ b/deps/v8/DEPS @@ -142,7 +142,7 @@ deps = { } ], 'dep_type': 'cipd', - 'condition': 'host_os == "linux" or host_os == "mac" or host_os == "win"', + 'condition': '(host_os == "linux" or host_os == "mac" or host_os == "win") and host_cpu != "s390" and host_cpu != "ppc"', }, 'test/benchmarks/data': Var('chromium_url') + '/v8/deps/third_party/benchmarks.git' + '@' + '05d7188267b4560491ff9155c5ee13e207ecd65f',