summaryrefslogtreecommitdiff
path: root/www/chromium-uc/patches/patch-components_crash_content_browser_BUILD_gn
diff options
context:
space:
mode:
Diffstat (limited to 'www/chromium-uc/patches/patch-components_crash_content_browser_BUILD_gn')
-rw-r--r--www/chromium-uc/patches/patch-components_crash_content_browser_BUILD_gn32
1 files changed, 0 insertions, 32 deletions
diff --git a/www/chromium-uc/patches/patch-components_crash_content_browser_BUILD_gn b/www/chromium-uc/patches/patch-components_crash_content_browser_BUILD_gn
deleted file mode 100644
index d4f9432..0000000
--- a/www/chromium-uc/patches/patch-components_crash_content_browser_BUILD_gn
+++ /dev/null
@@ -1,32 +0,0 @@
1$OpenBSD: patch-components_crash_content_browser_BUILD_gn,v 1.16 2021/09/01 16:54:39 robert Exp $
2
3Index: components/crash/content/browser/BUILD.gn
4--- components/crash/content/browser/BUILD.gn.orig
5+++ components/crash/content/browser/BUILD.gn
6@@ -21,7 +21,7 @@ source_set("browser") {
7 "//content/public/common",
8 ]
9
10- if (is_linux || is_chromeos || is_android) {
11+ if ((is_linux && !is_openbsd) || is_chromeos || is_android) {
12 # Want this file on both Linux and Android.
13 sources += [
14 "crash_handler_host_linux.cc",
15@@ -37,7 +37,7 @@ source_set("browser") {
16
17 # This is not in the GYP build but this target includes breakpad client
18 # headers, so add the dependency here.
19- if ((is_posix && !is_ios) || is_fuchsia) {
20+ if ((is_posix && !is_ios && !is_openbsd) || is_fuchsia) {
21 configs += [ "//third_party/breakpad:client_config" ]
22 public_configs = [ "//third_party/breakpad:client_config" ]
23 }
24@@ -59,7 +59,7 @@ source_set("browser") {
25 "//components/crash/android:jni_headers",
26 "//mojo/public/cpp/bindings",
27 ]
28- } else {
29+ } else if (!is_openbsd) {
30 deps += [ "//third_party/breakpad:client" ]
31 }
32 }