aboutsummaryrefslogtreecommitdiff
path: root/www/chromium
diff options
context:
space:
mode:
authorConrad Meyer <cem@FreeBSD.org>2020-12-03 20:36:25 +0000
committerConrad Meyer <cem@FreeBSD.org>2020-12-03 20:36:25 +0000
commitd817c0d07c44839c2751522fe547a44952784fb0 (patch)
treeb85c785827598093c4931fe06a7a8819a522fe8f /www/chromium
parent07b66c36f36575fce37c497a7fcc3a1a6e32c3f4 (diff)
downloadports-d817c0d07c44839c2751522fe547a44952784fb0.tar.gz
ports-d817c0d07c44839c2751522fe547a44952784fb0.zip
www/chromium: Update to 87.0.4280.88
Notes
Notes: svn path=/head/; revision=556921
Diffstat (limited to 'www/chromium')
-rw-r--r--www/chromium/Makefile2
-rw-r--r--www/chromium/distinfo10
-rw-r--r--www/chromium/files/patch-third__party_blink_renderer_modules_webcodecs_video__encoder.cc20
3 files changed, 6 insertions, 26 deletions
diff --git a/www/chromium/Makefile b/www/chromium/Makefile
index 1692b1168a6c..d20ead143d91 100644
--- a/www/chromium/Makefile
+++ b/www/chromium/Makefile
@@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= chromium
-PORTVERSION= 87.0.4280.66
+PORTVERSION= 87.0.4280.88
CATEGORIES?= www java
MASTER_SITES= https://commondatastorage.googleapis.com/chromium-browser-official/ \
LOCAL/rene/chromium/:fonts
diff --git a/www/chromium/distinfo b/www/chromium/distinfo
index 87b8df753e8a..09969f01994c 100644
--- a/www/chromium/distinfo
+++ b/www/chromium/distinfo
@@ -1,7 +1,7 @@
-TIMESTAMP = 1605893526
-SHA256 (chromium-87.0.4280.66.tar.xz) = 29a8e4ea82edec2fdcf34ece68323bec7ab90f3d5669e6b77f58cff9c278f741
-SIZE (chromium-87.0.4280.66.tar.xz) = 856464608
-SHA256 (chromium-87.0.4280.66-testdata.tar.xz) = f6f26bac71a58d36b1b47abdaf4b209b135877a15b6964b126f7677be101e676
-SIZE (chromium-87.0.4280.66-testdata.tar.xz) = 257359532
+TIMESTAMP = 1606957721
+SHA256 (chromium-87.0.4280.88.tar.xz) = 3e4645328735ef60db78d1a313efb3770a3edeaede90d076414df52f567a09c0
+SIZE (chromium-87.0.4280.88.tar.xz) = 856266548
+SHA256 (chromium-87.0.4280.88-testdata.tar.xz) = 35c4676c9cb699aa76335757ec2a71a246102f2e6e6a3536e43c1c4afb04e494
+SIZE (chromium-87.0.4280.88-testdata.tar.xz) = 257423892
SHA256 (test_fonts-85.tar.xz) = f22b61b3639acb147c98ec2e2305d8b96f0b55c8c74c40e2ea696402fae8cef9
SIZE (test_fonts-85.tar.xz) = 9511984
diff --git a/www/chromium/files/patch-third__party_blink_renderer_modules_webcodecs_video__encoder.cc b/www/chromium/files/patch-third__party_blink_renderer_modules_webcodecs_video__encoder.cc
deleted file mode 100644
index 9e1d79cf3792..000000000000
--- a/www/chromium/files/patch-third__party_blink_renderer_modules_webcodecs_video__encoder.cc
+++ /dev/null
@@ -1,20 +0,0 @@
---- third_party/blink/renderer/modules/webcodecs/video_encoder.cc.orig 2020-11-17 18:39:30 UTC
-+++ third_party/blink/renderer/modules/webcodecs/video_encoder.cc
-@@ -53,7 +53,7 @@ namespace {
- std::unique_ptr<media::VideoEncoder> CreateAcceleratedVideoEncoder(
- media::VideoCodecProfile profile,
- const media::VideoEncoder::Options& options) {
--#if defined(OS_MAC) || (defined(OS_LINUX) && !defined(OS_CHROMEOS))
-+#if defined(OS_MAC) || (defined(OS_LINUX) || defined(OS_BSD) && !defined(OS_CHROMEOS))
- // TODO(https://crbug.com/1110279) Flush() is not implemented on MacOS'
- // accelerated video encoder, so we can't use it yet.
- return nullptr;
-@@ -97,7 +97,7 @@ std::unique_ptr<media::VideoEncoder> CreateAccelerated
- media::AsyncDestroyVideoEncoder<media::VideoEncodeAcceleratorAdapter>>(
- std::make_unique<media::VideoEncodeAcceleratorAdapter>(
- gpu_factories, std::move(task_runner)));
--#endif // defined(OS_MAC) || (defined(OS_LINUX) && !defined(OS_CHROMEOS))
-+#endif // defined(OS_MAC) || (defined(OS_LINUX) || defined(OS_BSD) && !defined(OS_CHROMEOS))
- }
-
- std::unique_ptr<media::VideoEncoder> CreateVpxVideoEncoder() {