Skip to content

Commit 12da765

Browse files
authored
Update to 146.0.7680.71 (#548)
1 parent 05e35de commit 12da765

14 files changed

Lines changed: 322 additions & 163 deletions

domain_substitution.list

Lines changed: 254 additions & 126 deletions
Large diffs are not rendered by default.

downloads.ini

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -124,24 +124,24 @@ strip_leading_dirs=webauthn-%(version)s
124124

125125
# Rust
126126
[rust-x64]
127-
version = 2025-12-02
127+
version = 2026-01-30
128128
url = https://static.rust-lang.org/dist/%(version)s/rust-nightly-x86_64-pc-windows-msvc.tar.gz
129129
download_filename = rust-nightly-%(version)s-x86_64-pc-windows-msvc.tar.gz
130-
sha512 = 4a2098ee7d15e6612db63d5086b85d83ede069591d1d2a73d3aafc447100bb0e0753e14881e6cae9e04d302bf6c0e601aad24f70c7ff744abe7db6dcf1d65343
130+
sha512 = 5a26391cfebec1dd01fba0c51dd241cbdd25c60096df74f2daba03dc008f7e6ce811024e5b762034f2f51f5adbf464d3b48df5dee5af6857e306867fdfb663a6
131131
output_path = third_party/rust-toolchain-x64
132132
strip_leading_dirs=rust-nightly-x86_64-pc-windows-msvc
133133
[rust-x86]
134-
version = 2025-12-02
134+
version = 2026-01-30
135135
url = https://static.rust-lang.org/dist/%(version)s/rust-nightly-i686-pc-windows-msvc.tar.gz
136136
download_filename = rust-nightly-%(version)s-i686-pc-windows-msvc.tar.gz
137-
sha512 = c2639169c50f2af39e901a6be7f574c5c7042bc6fdf7166c6e53c77c1effb581b0941457aa1a43cc1c0684703f5527a39401a8f9f301e5d07130341268ae6719
137+
sha512 = 67f2be13fd1b436f6feaa607e3be0287053d17fa2f6a147cb519abe3d3ea3269523a75e713fb4fe6f44a9d1ee4838ce3613d7a8362560bbc050cb85631eaf2d0
138138
output_path = third_party/rust-toolchain-x86
139139
strip_leading_dirs=rust-nightly-i686-pc-windows-msvc
140140
[rust-arm]
141-
version = 2025-12-02
141+
version = 2026-01-30
142142
url = https://static.rust-lang.org/dist/%(version)s/rust-nightly-aarch64-pc-windows-msvc.tar.gz
143143
download_filename = rust-nightly-%(version)s-aarch64-pc-windows-msvc.tar.gz
144-
sha512 = 610e8c4b768040797e2655da9ca028e4e85df7ccec7a66a7d99ff4fcc6509f39b11590aedcecf26feeaa86f8282bfc46653a78a0ee4df88d7240c6b6437f8e48
144+
sha512 = cea54b02dafb8e98444376319ca6da1f2cefe49868c89e56fc54bfec166c8a0b5b26c1ab7a355eb8217015c8cc8b0d0c4a3e746a3a6832e969883b1506f0461a
145145
output_path = third_party/rust-toolchain-arm
146146
strip_leading_dirs=rust-nightly-aarch64-pc-windows-msvc
147147
[rust-windows-create]

patches/series

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,4 @@ ungoogled-chromium/windows/windows-fix-licenses-gn-path.patch
2020
ungoogled-chromium/windows/windows-fix-building-with-rust.patch
2121
ungoogled-chromium/windows/windows-fix-remove-unused-preferences-fields.patch
2222
ungoogled-chromium/windows/windows-fix-missing-includes.patch
23+
ungoogled-chromium/windows/windows-fix-unsupported-llvm-flags.patch

patches/ungoogled-chromium/windows/windows-disable-clang-version-check.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
--- a/build/config/compiler/BUILD.gn
22
+++ b/build/config/compiler/BUILD.gn
3-
@@ -1732,8 +1732,7 @@ config("compiler_deterministic") {
3+
@@ -1735,8 +1735,7 @@ config("compiler_deterministic") {
44
}
55

66
config("clang_revision") {

patches/ungoogled-chromium/windows/windows-disable-download-warning-prompt.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
--- a/components/download/internal/common/download_item_impl.cc
22
+++ b/components/download/internal/common/download_item_impl.cc
3-
@@ -2502,7 +2502,7 @@ void DownloadItemImpl::SetDangerType(Dow
3+
@@ -2505,7 +2505,7 @@ void DownloadItemImpl::SetDangerType(Dow
44
TRACE_EVENT_SCOPE_THREAD, "danger_type",
55
GetDownloadDangerNames(danger_type).c_str());
66
}

patches/ungoogled-chromium/windows/windows-disable-event-log.patch

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33

44
--- a/chrome/common/BUILD.gn
55
+++ b/chrome/common/BUILD.gn
6-
@@ -122,7 +122,6 @@ source_set("request_code_constants") {
6+
@@ -121,7 +121,6 @@ source_set("request_code_constants") {
77
static_library("common_lib") {
88
visibility = [
99
":*",
1010
- "//chrome/common/win:eventlog_messages",
1111
]
1212
sources = [
1313
"actor/action_result.cc",
14-
@@ -366,7 +365,6 @@ static_library("common_lib") {
14+
@@ -367,7 +366,6 @@ static_library("common_lib") {
1515
"conflicts/remote_module_watcher_win.cc",
1616
"conflicts/remote_module_watcher_win.h",
1717
]

patches/ungoogled-chromium/windows/windows-fix-building-with-rust.patch

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
--- a/build/config/clang/BUILD.gn
22
+++ b/build/config/clang/BUILD.gn
3-
@@ -257,8 +257,6 @@ clang_lib("compiler_builtins") {
3+
@@ -261,8 +261,6 @@ clang_lib("compiler_builtins") {
44
} else {
55
assert(false, "unsupported target_platform=$target_platform")
66
}
@@ -25,19 +25,10 @@
2525
# Rust targets to be rebuilt, which allows you to update your toolchain and
2626
# not break incremental builds.
2727
- rustc_version = ""
28-
+ rustc_version = "rustc 1.93.0-nightly (1d60f9e07 2025-12-01)"
28+
+ rustc_version = "rustc-1.95.0-nightly"
2929

3030
# Whether artifacts produced by the Rust compiler can participate in ThinLTO.
3131
#
32-
@@ -121,7 +121,7 @@ use_chromium_rust_toolchain = rust_sysro
33-
# `rustc_nightly_capability = false` will make the build avoid the use of
34-
# Rust nightly features. There are no bots that test this and there is no
35-
# guarantee it will work, but we accept patches for this configuration.
36-
-rustc_nightly_capability = use_chromium_rust_toolchain
37-
+rustc_nightly_capability = use_chromium_rust_toolchain || build_with_chromium
38-
39-
# Platform support for the Rust toolchain.
40-
chromium_toolchain_supports_platform = !is_wasm
4132
--- a/build/rust/allocator/lib.rs
4233
+++ b/build/rust/allocator/lib.rs
4334
@@ -107,14 +107,4 @@ mod both_allocators {

patches/ungoogled-chromium/windows/windows-fix-building-without-safebrowsing.patch

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@
1717
"//build:branding_buildflags",
1818
--- a/chrome/browser/chrome_content_browser_client.cc
1919
+++ b/chrome/browser/chrome_content_browser_client.cc
20-
@@ -5117,7 +5117,6 @@ std::wstring ChromeContentBrowserClient:
20+
@@ -5160,7 +5160,6 @@ std::wstring ChromeContentBrowserClient:
2121
#endif
2222
case sandbox::mojom::Sandbox::kPrintCompositor:
2323
case sandbox::mojom::Sandbox::kAudio:
2424
- case sandbox::mojom::Sandbox::kScreenAI:
2525
case sandbox::mojom::Sandbox::kSpeechRecognition:
2626
case sandbox::mojom::Sandbox::kPdfConversion:
2727
case sandbox::mojom::Sandbox::kService:
28-
@@ -5213,7 +5212,6 @@ bool ChromeContentBrowserClient::PreSpaw
28+
@@ -5256,7 +5255,6 @@ bool ChromeContentBrowserClient::PreSpaw
2929
case sandbox::mojom::Sandbox::kPrintBackend:
3030
#endif
3131
case sandbox::mojom::Sandbox::kPrintCompositor:

patches/ungoogled-chromium/windows/windows-fix-command-ids.patch

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#define IDC_RESTORE_WINDOW 34052
2020
#endif
2121

22-
@@ -92,7 +92,7 @@
22+
@@ -93,7 +93,7 @@
2323
#define IDC_WEB_APP_MENU_APP_INFO 34063
2424
#define IDC_WEB_APP_UPGRADE_DIALOG 34064
2525

@@ -28,7 +28,7 @@
2828
// Move window to other user commands
2929
#define IDC_VISIT_DESKTOP_OF_LRU_USER_2 34080
3030
#define IDC_VISIT_DESKTOP_OF_LRU_USER_3 34081
31-
@@ -513,7 +513,7 @@
31+
@@ -518,7 +518,7 @@
3232
#define IDC_MEDIA_ROUTER_TOGGLE_MEDIA_REMOTING 51208
3333

3434
// Context menu items for media toolbar button
@@ -37,7 +37,7 @@
3737
#define IDC_MEDIA_TOOLBAR_CONTEXT_REPORT_CAST_ISSUE 51209
3838
#endif
3939
#define IDC_MEDIA_TOOLBAR_CONTEXT_SHOW_OTHER_SESSIONS 51210
40-
@@ -550,7 +550,7 @@
40+
@@ -555,7 +555,7 @@
4141
#define IDC_CONTENT_CONTEXT_ACCESSIBILITY_LABELS 52411
4242
#define IDC_CONTENT_CONTEXT_ACCESSIBILITY_LABELS_TOGGLE_ONCE 52412
4343

patches/ungoogled-chromium/windows/windows-fix-licenses-gn-path.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
--- a/tools/licenses/licenses.py
22
+++ b/tools/licenses/licenses.py
3-
@@ -853,7 +853,7 @@ def _GnBinary():
3+
@@ -857,7 +857,7 @@ def _GnBinary():
44
elif sys.platform == 'darwin':
55
subdir = 'mac'
66
elif sys.platform == 'win32':

0 commit comments

Comments
 (0)