Skip to content

Commit

Permalink
www/chromium: update to 109.0.5414.119
Browse files Browse the repository at this point in the history
  • Loading branch information
rnagy authored and rene0 committed Jan 26, 2023
1 parent 66ec370 commit 1324a75
Show file tree
Hide file tree
Showing 6 changed files with 60 additions and 24 deletions.
2 changes: 1 addition & 1 deletion www/chromium/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PORTNAME= chromium
PORTVERSION= 109.0.5414.74
PORTVERSION= 109.0.5414.119
CATEGORIES= www wayland
MASTER_SITES= https://commondatastorage.googleapis.com/chromium-browser-official/ \
https://nerd.hu/distfiles/:external
Expand Down
14 changes: 7 additions & 7 deletions www/chromium/distinfo
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
TIMESTAMP = 1673422188
SHA256 (chromium-109.0.5414.74.tar.xz) = eded233c26ab631be325ad49cb306c338513b6a6528197d42653e66187548e5d
SIZE (chromium-109.0.5414.74.tar.xz) = 1747778008
SHA256 (chrome-linux-109.0.5414.74-llvm13.profdata.tar.xz) = 7f178c51ffa9cafbf4f147f17ad6b6c6833c999c8885c50d56c21b6f4ba8212c
SIZE (chrome-linux-109.0.5414.74-llvm13.profdata.tar.xz) = 26288820
SHA256 (chromium-109.0.5414.74-testdata.tar.xz) = 74013c3e3c3cae2399df75fb16e918df3ca7e8f0810b6b77d5f3b616c353ce04
SIZE (chromium-109.0.5414.74-testdata.tar.xz) = 262657092
TIMESTAMP = 1674714013
SHA256 (chromium-109.0.5414.119.tar.xz) = cbcdef5ee71acb53790ded3adef86871812b46e9f208dce8ec3f8ab04958be2d
SIZE (chromium-109.0.5414.119.tar.xz) = 1747968612
SHA256 (chrome-linux-109.0.5414.119-llvm13.profdata.tar.xz) = 0cf5a50597b0292127cdbee637ece41017b009a501e92bf73ce82bfe30124175
SIZE (chrome-linux-109.0.5414.119-llvm13.profdata.tar.xz) = 26305372
SHA256 (chromium-109.0.5414.119-testdata.tar.xz) = 8781e0dde6b4ec48a2863cf14911d6d6e645b949134c9743e38e9522b889704f
SIZE (chromium-109.0.5414.119-testdata.tar.xz) = 264800856
SHA256 (test_fonts-336e775eec536b2d785cc80eff6ac39051931286.tar.gz) = a2ca2962daf482a8f943163541e1c73ba4b2694fabcd2510981f2db4eda493c8
SIZE (test_fonts-336e775eec536b2d785cc80eff6ac39051931286.tar.gz) = 32624734
4 changes: 2 additions & 2 deletions www/chromium/files/patch-content_browser_BUILD.gn
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
--- content/browser/BUILD.gn.orig 2023-01-11 09:17:16 UTC
--- content/browser/BUILD.gn.orig 2023-01-26 06:54:16 UTC
+++ content/browser/BUILD.gn
@@ -2338,6 +2338,13 @@ source_set("browser") {
@@ -2340,6 +2340,13 @@ source_set("browser") {
]
}

Expand Down
14 changes: 0 additions & 14 deletions www/chromium/files/patch-third__party_blink_common_features.cc

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
--- third_party/blink/renderer/platform/wtf/text/text_codec_icu.cc.orig 2023-01-26 06:54:16 UTC
+++ third_party/blink/renderer/platform/wtf/text/text_codec_icu.cc
@@ -116,6 +116,10 @@ void TextCodecICU::RegisterEncodingNames(EncodingNameR
continue;
}
#endif
+ // Avoid codecs supported by `TextCodecCJK`.
+ if (is_text_codec_cjk_enabled && TextCodecCJK::IsSupported(standard_name)) {
+ continue;
+ }

// A number of these aliases are handled in Chrome's copy of ICU, but
// Chromium can be compiled with the system ICU.
@@ -144,12 +148,13 @@ void TextCodecICU::RegisterEncodingNames(EncodingNameR
}
#endif

- if (is_text_codec_cjk_enabled && TextCodecCJK::IsSupported(standard_name)) {
- continue;
+ // Avoid registering codecs registered by
+ // `TextCodecCJK::RegisterEncodingNames`.
+ if (!is_text_codec_cjk_enabled ||
+ !TextCodecCJK::IsSupported(standard_name)) {
+ registrar(standard_name, standard_name);
}

- registrar(standard_name, standard_name);
-
uint16_t num_aliases = ucnv_countAliases(name, &error);
DCHECK(U_SUCCESS(error));
if (U_SUCCESS(error))
@@ -289,6 +294,7 @@ void TextCodecICU::RegisterCodecs(TextCodecRegistrar r
continue;
}
#endif
+ // Avoid codecs supported by `TextCodecCJK`.
if (is_text_codec_cjk_enabled && TextCodecCJK::IsSupported(standard_name)) {
continue;
}
11 changes: 11 additions & 0 deletions www/chromium/files/patch-third__party_pdfium_pdfium.gni
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
--- third_party/pdfium/pdfium.gni.orig 2023-01-26 06:54:16 UTC
+++ third_party/pdfium/pdfium.gni
@@ -37,7 +37,7 @@ declare_args() {
pdf_enable_xfa_tiff = true

# Build PDFium with PartitionAlloc as the memory allocator.
- pdf_use_partition_alloc = pdf_use_partition_alloc_override
+ pdf_use_partition_alloc = pdf_use_partition_alloc_override && use_partition_alloc_as_malloc

# Build PDFium to use Skia (experimental) for all PDFium graphics.
# If enabled, coexists in build with AGG graphics and the default

0 comments on commit 1324a75

Please sign in to comment.