Skip to content

Commit a33e38c

Browse files
committed
chromium: update to 143.0.7499.40.
1 parent 337b917 commit a33e38c

15 files changed

+183
-236
lines changed

srcpkgs/chromium/patches/chromium-138-fix-rust-1.88.0.patch

Lines changed: 0 additions & 21 deletions
This file was deleted.

srcpkgs/chromium/patches/chromium-140-8393b61.patch

Lines changed: 0 additions & 35 deletions
This file was deleted.

srcpkgs/chromium/patches/chromium-140-8393b61.patch.args

Lines changed: 0 additions & 1 deletion
This file was deleted.

srcpkgs/chromium/patches/chromium-141-cross-toolchain.patch

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,16 @@
7979
# the bindgen exectuable).
8080
--- a/build/rust/std/BUILD.gn
8181
+++ b/build/rust/std/BUILD.gn
82-
@@ -336,6 +335,13 @@
82+
@@ -62,7 +62,7 @@
83+
# When building proc macros, include the proc_macro crate in what should be
84+
# copied with find_stdlib. Otherwise it is not copied since it will be
85+
# unused.
86+
- stdlib_files += [ "proc_macro" ]
87+
+ stdlib_files += [ "proc_macro", "rustc_literal_escaper" ]
88+
}
89+
90+
# Different Rust toolchains may add or remove files relative to the above
91+
@@ -294,6 +294,13 @@
8392
rust_abi_target,
8493
]
8594

@@ -93,7 +102,7 @@
93102
outputs = []
94103
foreach(lib, all_stdlibs_to_copy) {
95104
outputs += [ "$target_out_dir/lib$lib.rlib" ]
96-
@@ -393,6 +399,7 @@
105+
@@ -351,6 +358,7 @@
97106
group("std") {
98107
all_dependent_configs = [
99108
":prebuilt_stdlib_libs",

srcpkgs/chromium/patches/chromium-142-autofill-incomplete-formfielddata.patch

Lines changed: 0 additions & 34 deletions
This file was deleted.

srcpkgs/chromium/patches/chromium-142-revert-4c70b98d1eb.patch

Lines changed: 0 additions & 61 deletions
This file was deleted.

srcpkgs/chromium/patches/chromium-142-revert-4c70b98d1eb.patch.args

Lines changed: 0 additions & 1 deletion
This file was deleted.

srcpkgs/chromium/patches/chromium-142-revert-e33287758f2.patch

Lines changed: 0 additions & 38 deletions
This file was deleted.

srcpkgs/chromium/patches/chromium-142-revert-e33287758f2.patch.args

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
From 4ea5b1d3b27539e8a11d7e7ef974075cf1f7e390 Mon Sep 17 00:00:00 2001
2+
From: LN Liberda <[email protected]>
3+
Date: Tue, 4 Nov 2025 14:57:33 +0100
4+
Subject: [PATCH] Fix undefined __BEGIN_DECLS define.
5+
6+
Not sure how this worked in the first place.
7+
---
8+
include/ndk/sync.h | 10 ++++++++++
9+
1 file changed, 10 insertions(+)
10+
11+
diff --git a/third_party/libsync/src/include/ndk/sync.h b/third_party/libsync/src/include/ndk/sync.h
12+
index a786d3e..2a31df6 100644
13+
--- a/third_party/libsync/src/include/ndk/sync.h
14+
+++ b/third_party/libsync/src/include/ndk/sync.h
15+
@@ -30,6 +30,16 @@
16+
17+
#include <linux/sync_file.h>
18+
19+
+#if !defined(__BEGIN_DECLS) && !defined(__END_DECLS)
20+
+#ifdef __cplusplus
21+
+#define __BEGIN_DECLS extern "C" {
22+
+#define __END_DECLS }
23+
+#else
24+
+#define __BEGIN_DECLS
25+
+#define __END_DECLS
26+
+#endif
27+
+#endif
28+
+
29+
__BEGIN_DECLS
30+
31+
#if __ANDROID_API__ >= __ANDROID_API_O__

0 commit comments

Comments
 (0)