update to 124.0.6367.207

This commit is contained in:
purplerain 2024-05-20 13:42:05 +00:00
parent 687f3acd55
commit fe9bc9d89b
Signed by: purplerain
GPG key ID: F42C07F07E2E35B7
958 changed files with 7372 additions and 6231 deletions

View file

@ -0,0 +1,28 @@
Index: build/linux/unbundle/libwebp.gn
--- build/linux/unbundle/libwebp.gn.orig
+++ build/linux/unbundle/libwebp.gn
@@ -22,6 +22,8 @@ shim_headers("libwebp_shim") {
"webp/mux.h",
"webp/mux_types.h",
"webp/types.h",
+ "webp/sharpyuv/sharpyuv.h",
+ "webp/sharpyuv/sharpyuv_csp.h",
]
}
@@ -30,6 +32,14 @@ source_set("libwebp_webp") {
public_configs = [ ":system_libwebp" ]
}
+source_set("libwebp_sharpyuv") {
+ deps = [ ":libwebp_shim" ]
+ public_configs = [ ":system_libwebp" ]
+}
+
group("libwebp") {
- deps = [ ":libwebp_webp" ]
+ deps = [
+ ":libwebp_webp",
+ ":libwebp_sharpyuv",
+ ]
}