From 35dc5e8e5007baca52df3b2d24848ba732748611 Mon Sep 17 00:00:00 2001 From: Brian Hackett Date: Wed, 11 Sep 2024 07:00:36 -0700 Subject: [PATCH 1/4] Update DEPS for stack overflow logging --- DEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DEPS b/DEPS index aa40e0434daadc..f6e2173e8750ec 100644 --- a/DEPS +++ b/DEPS @@ -311,7 +311,7 @@ vars = { # Three lines of non-changing comments so that # the commit queue can handle CLs rolling V8 # and whatever else without interference from each other. - 'v8_revision': '1a0e6a82c5f5cb43513b781e027569896b60bcb4', + 'v8_revision': '48a5437d687d3cd809ccb406bd32238aa624df2c', # Three lines of non-changing comments so that # the commit queue can handle CLs rolling swarming_client # and whatever else without interference from each other. From ce721e95dc5feaae6d28dd83921bce5b88e27da8 Mon Sep 17 00:00:00 2001 From: Brian Hackett Date: Wed, 11 Sep 2024 07:22:40 -0700 Subject: [PATCH 2/4] Fix build --- replay_build_scripts/common.mjs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/replay_build_scripts/common.mjs b/replay_build_scripts/common.mjs index 3c3ca29eea2e5e..98dabf66c7ee4d 100644 --- a/replay_build_scripts/common.mjs +++ b/replay_build_scripts/common.mjs @@ -117,7 +117,8 @@ function gclient() { } function runGclientSync() { - spawnChecked(gclient(), ["sync", "-D"], { stdio: "inherit" }); + // Disabled: Our fork may be too old for gclient sync to work properly. + //spawnChecked(gclient(), ["sync", "-D"], { stdio: "inherit" }); } function updateRepo(repo, treeish) { From 1e464fb4c88acd7b012f3418dbaf5be8e5163af2 Mon Sep 17 00:00:00 2001 From: Brian Hackett Date: Wed, 11 Sep 2024 07:25:30 -0700 Subject: [PATCH 3/4] lint --- replay_build_scripts/common.mjs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/replay_build_scripts/common.mjs b/replay_build_scripts/common.mjs index 98dabf66c7ee4d..b7b6a219c62db6 100644 --- a/replay_build_scripts/common.mjs +++ b/replay_build_scripts/common.mjs @@ -112,9 +112,11 @@ function runGnGen() { spawnChecked(gn(), ["gen", "out/Release"], { stdio: "inherit" }); } +/* function gclient() { return currentPlatform() == Platform.windows ? "gclient.bat" : "gclient"; } +*/ function runGclientSync() { // Disabled: Our fork may be too old for gclient sync to work properly. From cee8583ee244307cd956c3576b98a58f0ed49401 Mon Sep 17 00:00:00 2001 From: Brian Hackett Date: Wed, 11 Sep 2024 07:32:14 -0700 Subject: [PATCH 4/4] deps --- DEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DEPS b/DEPS index f6e2173e8750ec..8c740813b21c6f 100644 --- a/DEPS +++ b/DEPS @@ -311,7 +311,7 @@ vars = { # Three lines of non-changing comments so that # the commit queue can handle CLs rolling V8 # and whatever else without interference from each other. - 'v8_revision': '48a5437d687d3cd809ccb406bd32238aa624df2c', + 'v8_revision': '5d589add3948a7f924606aaa8515019087d2fc82', # Three lines of non-changing comments so that # the commit queue can handle CLs rolling swarming_client # and whatever else without interference from each other.