{,ungoogled-}chromium,chromedriver: 146.0.7680.177 -> 147.0.7727.55 (#507977)

This commit is contained in:
Emily
2026-04-08 20:22:52 +00:00
committed by GitHub
3 changed files with 296 additions and 269 deletions
@@ -622,6 +622,10 @@ let
decode = "base64 -d";
hash = "sha256-iDhDdVscy0tinQCRKXOghrn4ZRwlc8YjPZ0xPv0UMEU=";
})
]
++ lib.optionals (chromiumVersionAtLeast "147" && lib.versionOlder llvmVersion "23") [
# clang++: error: unknown argument: '-fno-lifetime-dse'
./patches/chromium-147-llvm-22.patch
];
postPatch =
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,13 @@
diff --git a/build/config/compiler/BUILD.gn b/build/config/compiler/BUILD.gn
index c092446fa0715351f72913fd449c8dddb855a10f..83670b496575a85ecb02a4671c0287fd0e052c5a 100644
--- a/build/config/compiler/BUILD.gn
+++ b/build/config/compiler/BUILD.gn
@@ -616,7 +616,7 @@ config("compiler") {
# The performance improvement does not seem worth the risk. See
# https://crbug.com/484082200 for background and https://crrev.com/c/7593035
# for discussion.
- if (!is_wasm) {
+ if (false) {
cflags += [ "-fno-lifetime-dse" ]
}