Skip to content

Commit f877fcf

Browse files
committed
main/chromium: update to 145.0.7632.75
1 parent 225276d commit f877fcf

15 files changed

Lines changed: 1362 additions & 43 deletions

main/chromium/files/pp-data.sh

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
11
#!/bin/sh
22

33
sed \
4-
-e 's/@@MENUNAME@@/Chromium/g' \
5-
-e 's/@@PACKAGE@@/chromium/g' \
6-
-e 's/@@USR_BIN_SYMLINK_NAME@@/chromium-browser/g' \
4+
-e 's/@@MENUNAME/Chromium/g' \
5+
-e 's/@@PACKAGE/chromium/g' \
76
chrome/app/resources/manpage.1.in > chromium.1
87

98

109
sed \
11-
-e 's/@@MENUNAME@@/Chromium/g' \
12-
-e 's/@@PACKAGE@@/chromium/g' \
13-
-e 's/@@USR_BIN_SYMLINK_NAME@@/chromium-browser/g' \
14-
-e 's/@@URI_SCHEME@@//' \
15-
-e '/@@EXTRA_DESKTOP_ENTRIES@@/d' \
10+
-e 's/@@MENUNAME/Chromium/g' \
11+
-e 's/@@PACKAGE/chromium/g' \
12+
-e 's/@@usr_bin_symlink_name/chromium-browser/g' \
13+
-e 's/@@uri_scheme//' \
14+
-e '/@@extra_desktop_entries/d' \
1615
chrome/installer/linux/common/desktop.template > chromium.desktop
1716

1817
sed \

main/chromium/patches/004-compiler.patch

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,16 @@ re: removing safe - hardened is enabled somewhere, and it can't be both.
2424
cflags += [
2525
"-march=$arm_arch",
2626
@@ -1272,8 +1272,8 @@
27-
}
27+
]
2828
} else if (current_cpu == "arm64") {
2929
if (is_clang && !is_android && !is_fuchsia && !is_chromeos_device) {
3030
- cflags += [ "--target=aarch64-linux-gnu" ]
3131
- ldflags += [ "--target=aarch64-linux-gnu" ]
3232
+ cflags += [ "--target=aarch64-chimera-linux-musl" ]
3333
+ ldflags += [ "--target=aarch64-chimera-linux-musl" ]
3434
}
35-
} else if (current_cpu == "mipsel") {
36-
ldflags += [ "-Wl,--hash-style=sysv" ]
35+
if (target_os == "chromeos" && cros_target_cpu_arch != "" &&
36+
current_cpu == target_cpu) {
3737
@@ -1517,22 +1517,22 @@
3838
ldflags += [ "-maix64" ]
3939
}

main/chromium/patches/042-disable-mei-preload.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ index 19c940ccf3..9b45db7d91 100644
1414

1515
data_deps += [
1616
- "//chrome/browser/resources/media/mei_preload:component",
17+
"//chrome/browser/web_applications/isolated_web_apps/key_distribution/preload:component",
1718
"//components/privacy_sandbox/privacy_sandbox_attestations/preload:component",
18-
"//components/webapps/isolated_web_apps/preload:component",
1919
"//third_party/widevine/cdm",
2020
diff --git a/chrome/installer/linux/BUILD.gn b/chrome/installer/linux/BUILD.gn
2121
index 51f7c978a0..e4bd1692d6 100644

main/chromium/patches/999-ppc64le-support.patch

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1018,7 +1018,7 @@ diff --git a/sandbox/linux/system_headers/linux_stat.h b/sandbox/linux/system_he
10181018
index 3aae8cb..6a78036 100644
10191019
--- a/sandbox/linux/system_headers/linux_stat.h
10201020
+++ b/sandbox/linux/system_headers/linux_stat.h
1021-
@@ -173,6 +173,28 @@ struct kernel_stat {
1021+
@@ -173,6 +173,29 @@ struct kernel_stat {
10221022
unsigned int __unused4;
10231023
unsigned int __unused5;
10241024
};
@@ -1030,6 +1030,7 @@ index 3aae8cb..6a78036 100644
10301030
+ unsigned int st_mode;
10311031
+ unsigned int st_uid;
10321032
+ unsigned int st_gid;
1033+
+ unsigned int __pad0;
10331034
+ unsigned long st_rdev;
10341035
+ long st_size;
10351036
+ unsigned long st_blksize;
@@ -3656,7 +3657,7 @@ index 87b2129..d5a6eca 100644
36563657
+ "-mvsx",
36573658
+ ]
36583659
+ }
3659-
if (current_os == "aix") {
3660+
if (current_os == "aix" && !is_clang) {
36603661
cflags += [
36613662
# Work around AIX ceil, trunc and round oddities.
36623663
diff --git a/v8/test/BUILD.gn b/v8/test/BUILD.gn

main/chromium/patches/cr131-v8-non4k-pages.patch

Lines changed: 0 additions & 26 deletions
This file was deleted.
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
From f9545ffc3a26f2754e8ead3ada63dccf47e0de96 Mon Sep 17 00:00:00 2001
2+
From: LN Liberda <lauren@selfisekai.rocks>
3+
Date: Thu, 5 Feb 2026 04:33:27 +0100
4+
Subject: [PATCH] Allow any esbuild version
5+
6+
---
7+
node_modules/esbuild/lib/main.js | 4 ----
8+
1 file changed, 4 deletions(-)
9+
10+
diff --git a/third_party/devtools-frontend/src/node_modules/esbuild/lib/main.js b/third_party/devtools-frontend/src/node_modules/esbuild/lib/main.js
11+
index aabd5e9e3f..fb24c35315 100644
12+
--- a/third_party/devtools-frontend/src/node_modules/esbuild/lib/main.js
13+
+++ b/third_party/devtools-frontend/src/node_modules/esbuild/lib/main.js
14+
@@ -662,10 +662,6 @@ function createChannel(streamIn) {
15+
let handleIncomingPacket = (bytes) => {
16+
if (isFirstPacket) {
17+
isFirstPacket = false;
18+
- let binaryVersion = String.fromCharCode(...bytes);
19+
- if (binaryVersion !== "0.25.1") {
20+
- throw new Error(`Cannot start service: Host version "${"0.25.1"}" does not match binary version ${quote(binaryVersion)}`);
21+
- }
22+
return;
23+
}
24+
let packet = decodePacket(bytes);

0 commit comments

Comments
 (0)