aboutsummaryrefslogtreecommitdiff
path: root/www/chromium/files/patch-third__party_boringssl_BUILD.gn
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2020-12-05 12:29:57 +0000
committerRene Ladan <rene@FreeBSD.org>2020-12-05 12:29:57 +0000
commit06a5d2111549478c2f0e505de2e21fee4186dee1 (patch)
tree301ba3fa32c36a85fe8fcebea9a731920a500679 /www/chromium/files/patch-third__party_boringssl_BUILD.gn
parent373b40e4870c76510a1a7a6469e515f8ece5e379 (diff)
downloadports-06a5d2111549478c2f0e505de2e21fee4186dee1.tar.gz
ports-06a5d2111549478c2f0e505de2e21fee4186dee1.zip
www/chromium: Synchronize with HEAD
MFH: r552588 r553068 r553141 r554786 r554895 r555115 r556709 r556720 r556921 www/chromium: drop pkg-message which was only useful for FreeBSD <= 11.2 Phabricator: D26646 www/chromium: Update to version 85.0.4183.121 Submitted by: cem, rene Obtained from: some patches from OpenBSD port www/chromium: Use SNDIO instead of ALSA for audio by default There are stuttering sound issues when using ALSA, so switch to something that works. PR: 250370 www/chromium: attempt to fix build on aarch64 PR: 246982 Reported by: Bob Prohaska Approved by: portmgr (tier-2 blanket) www/chromium: improve cpu features detection on aarch64 Approved by: portmgr (tier-2 blanket) www/chromium: Make online detection always positive Summary: navigator.onLine is currently broken in www/chromium. This change introduce a workaround that always return positive for online detection. Sponsored by: The FreeBSD Foundation Submitted by: Ka Ho Ng <khng300@gmail.com> Differential Revision: https://reviews.freebsd.org/D26490 www/chromium: Update to version 87.0.4280.66 Submitted by: Matthias Wolf, cem, rene Obtained from: Some patches from OpenBSD port (robert@openbsd.org) Unbreak INDEX www/chromium: Update to 87.0.4280.88 https://chromereleases.googleblog.com/2020/12/stable-channel-update-for-desktop.html Changes: https://chromium.googlesource.com/chromium/src/+log/87.0.4280.67..87.0.4280.88?pretty=fuller&n=10000 Approved by: jrm Differential Revision: https://reviews.freebsd.org/D27452
Notes
Notes: svn path=/branches/2020Q4/; revision=557055
Diffstat (limited to 'www/chromium/files/patch-third__party_boringssl_BUILD.gn')
-rw-r--r--www/chromium/files/patch-third__party_boringssl_BUILD.gn36
1 files changed, 0 insertions, 36 deletions
diff --git a/www/chromium/files/patch-third__party_boringssl_BUILD.gn b/www/chromium/files/patch-third__party_boringssl_BUILD.gn
deleted file mode 100644
index 5fe68da0ea25..000000000000
--- a/www/chromium/files/patch-third__party_boringssl_BUILD.gn
+++ /dev/null
@@ -1,36 +0,0 @@
---- third_party/boringssl/BUILD.gn.orig 2020-05-13 18:40:00 UTC
-+++ third_party/boringssl/BUILD.gn
-@@ -72,7 +72,7 @@ if (is_win && !is_msan && current_cpu != "arm64") {
- } else if (current_cpu == "x64") {
- if (is_mac) {
- sources += crypto_sources_mac_x86_64
-- } else if (is_linux || is_android) {
-+ } else if (is_linux || is_bsd || is_android) {
- sources += crypto_sources_linux_x86_64
- } else {
- public_configs = [ ":no_asm_config" ]
-@@ -80,13 +80,13 @@ if (is_win && !is_msan && current_cpu != "arm64") {
- } else if (current_cpu == "x86") {
- if (is_mac) {
- sources += crypto_sources_mac_x86
-- } else if (is_linux || is_android) {
-+ } else if (is_linux || is_bsd || is_android) {
- sources += crypto_sources_linux_x86
- } else {
- public_configs = [ ":no_asm_config" ]
- }
- } else if (current_cpu == "arm") {
-- if (is_linux || is_android) {
-+ if (is_linux || is_bsd || is_android) {
- sources += crypto_sources_linux_arm
- } else if (is_ios) {
- sources += crypto_sources_ios_arm
-@@ -94,7 +94,7 @@ if (is_win && !is_msan && current_cpu != "arm64") {
- public_configs = [ ":no_asm_config" ]
- }
- } else if (current_cpu == "arm64") {
-- if (is_linux || is_android) {
-+ if (is_linux || is_bsd || is_android) {
- sources += crypto_sources_linux_aarch64
- } else if (is_ios) {
- sources += crypto_sources_ios_aarch64