summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'www-client/chromium/files')
-rw-r--r--www-client/chromium/files/chromium-125-system-zstd.patch53
-rw-r--r--www-client/chromium/files/chromium-127-enterprise-companion.patch44
2 files changed, 0 insertions, 97 deletions
diff --git a/www-client/chromium/files/chromium-125-system-zstd.patch b/www-client/chromium/files/chromium-125-system-zstd.patch
deleted file mode 100644
index 6211662f98fa..000000000000
--- a/www-client/chromium/files/chromium-125-system-zstd.patch
+++ /dev/null
@@ -1,53 +0,0 @@
-From 4ac5e29c999c7bbcb8409a2008b0061e1ae365dd Mon Sep 17 00:00:00 2001
-From: Matt Jolly <Matt.Jolly@footclan.ninja>
-Date: Thu, 18 Apr 2024 21:54:54 +1000
-Subject: [PATCH] Zstd now needs compress, too
-
-Existing patch updated for 125, added source_set("compress")
-
---- a/build/linux/unbundle/replace_gn_files.py
-+++ b/build/linux/unbundle/replace_gn_files.py
-@@ -80,6 +80,7 @@ REPLACEMENTS = {
- 'vulkan_memory_allocator' : 'third_party/vulkan_memory_allocator/BUILD.gn',
- 'woff2': 'third_party/woff2/BUILD.gn',
- 'zlib': 'third_party/zlib/BUILD.gn',
-+ 'zstd': 'third_party/zstd/BUILD.gn',
- }
-
-
---- /dev/null
-+++ b/build/linux/unbundle/zstd.gn
-@@ -0,0 +1,30 @@
-+import("//build/config/linux/pkg_config.gni")
-+import("//build/shim_headers.gni")
-+
-+pkg_config("system_zstd") {
-+ packages = [ "libzstd" ]
-+}
-+
-+shim_headers("zstd_shim") {
-+ root_path = "src/lib"
-+ headers = [
-+ "zdict.h",
-+ "zstd.h",
-+ "zstd_errors.h",
-+ ]
-+}
-+
-+source_set("zstd") {
-+ deps = [ ":zstd_shim" ]
-+ public_configs = [ ":system_zstd" ]
-+}
-+
-+source_set("compress") {
-+ deps = [ ":zstd_shim" ]
-+ public_configs = [ ":system_zstd" ]
-+}
-+
-+source_set("decompress") {
-+ deps = [ ":zstd_shim" ]
-+ public_configs = [ ":system_zstd" ]
-+}
---
-2.44.0
-
diff --git a/www-client/chromium/files/chromium-127-enterprise-companion.patch b/www-client/chromium/files/chromium-127-enterprise-companion.patch
deleted file mode 100644
index 76ce131bba3d..000000000000
--- a/www-client/chromium/files/chromium-127-enterprise-companion.patch
+++ /dev/null
@@ -1,44 +0,0 @@
-From e7d008ff98df2049cce1c4d941b13b320da336c9 Mon Sep 17 00:00:00 2001
-From: Matt Jolly <Matt.Jolly@footclan.ninja>
-Date: Mon, 29 Jul 2024 23:42:04 +1000
-Subject: [PATCH] no-op enterprise_companion.
-
-For some reason this pulls in updater components which breaks
-builds on OpenRC systems (or any non-systemd system, really).
-
-It doesn't seem essential so we'll just not build it.
-
-Bug: https://bugs.gentoo.org/936673
-Signed-off-by: Matt Jolly <kangie@gentoo.org>
---- a/chrome/enterprise_companion/BUILD.gn
-+++ b/chrome/enterprise_companion/BUILD.gn
-@@ -60,16 +60,16 @@ static_library("client") {
- deps = [ "//mojo/public/cpp/platform" ]
- }
-
--if (!is_official_build) {
-- executable("enterprise_companion") {
-- sources = [ "main.cc" ]
-- deps = [ ":base" ]
--
-- if (is_win) {
-- configs += [ "//build/config/win:windowed" ]
-- }
-- }
--}
-+#if (!is_official_build) {
-+# executable("enterprise_companion") {
-+# sources = [ "main.cc" ]
-+# deps = [ ":base" ]
-+#
-+# if (is_win) {
-+# configs += [ "//build/config/win:windowed" ]
-+# }
-+# }
-+#}
-
- group("all") {
- testonly = true
---
-2.45.2
-