diff options
author | Joseph Mingrone <jrm@FreeBSD.org> | 2020-06-02 20:30:55 +0000 |
---|---|---|
committer | Joseph Mingrone <jrm@FreeBSD.org> | 2020-06-02 20:30:55 +0000 |
commit | 8f6dc7d1dd8b0ca59427d71524538aab9403ac23 (patch) | |
tree | c272eeb9d12c3f96a460e7ad3fd1eb4233ad20ce /www/chromium/files/patch-components_crash_content_app_BUILD.gn | |
parent | multimedia/libva-intel-driver: update to 2.4.1 (diff) |
www/chromium: Update to version 83.0.4103.61
Submitted by: Matthias Wolf <freebsd@rheinwolf.de>
Reviewed by: rene
Approved by: chromium@ (rene)
Obtained from: https://github.com/gliaskos/freebsd-chromium
MFH: 2020Q2
Security: https://chromereleases.googleblog.com/2020/05/stable-channel-update-for-desktop.html
Differential Revision: https://reviews.freebsd.org/D25102
Diffstat (limited to 'www/chromium/files/patch-components_crash_content_app_BUILD.gn')
-rw-r--r-- | www/chromium/files/patch-components_crash_content_app_BUILD.gn | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/www/chromium/files/patch-components_crash_content_app_BUILD.gn b/www/chromium/files/patch-components_crash_content_app_BUILD.gn deleted file mode 100644 index 2d01264b0bad..000000000000 --- a/www/chromium/files/patch-components_crash_content_app_BUILD.gn +++ /dev/null @@ -1,52 +0,0 @@ ---- components/crash/content/app/BUILD.gn.orig 2020-03-16 18:40:30 UTC -+++ components/crash/content/app/BUILD.gn -@@ -49,17 +49,20 @@ static_library("app") { - "crashpad_win.cc", - ] - -- if (is_mac || is_win || is_android || is_linux) { -+ if ((is_mac || is_win || is_android || is_linux) && !is_bsd) { - sources += [ "crashpad.cc" ] - } - -- if (is_linux) { -+ if (is_linux && !is_bsd) { - sources += [ - "breakpad_linux.cc", - "breakpad_linux.h", - "breakpad_linux_impl.h", - ] - } -+ if (is_bsd) { -+ sources -= [ "crashpad_linux.cc" ] -+ } - - defines = [ "CRASH_IMPLEMENTATION" ] - -@@ -69,7 +72,7 @@ static_library("app") { - "//build:branding_buildflags", - ] - -- if (is_mac || is_win || is_android || is_linux) { -+ if ((is_mac || is_win || is_android || is_linux) && !is_bsd) { - deps += [ - "//third_party/crashpad/crashpad/client", - "//third_party/crashpad/crashpad/util", -@@ -95,7 +98,7 @@ static_library("app") { - ] - } - -- if (is_linux) { -+ if (is_linux && !is_bsd) { - deps += [ "//third_party/breakpad:client" ] - } - -@@ -126,7 +129,7 @@ static_library("app") { - libs = [ "log" ] - } - -- if (is_linux) { -+ if (is_linux && !is_bsd) { - data_deps = [ "//third_party/crashpad/crashpad/handler:crashpad_handler" ] - } - } |