merge: update to ungoogled-chromium 139.0.7258.66

This commit is contained in:
wukko
2025-08-07 13:11:33 +06:00
73 changed files with 1258 additions and 1361 deletions

View File

@@ -70,6 +70,8 @@ PRUNING_EXCLUDE_PATTERNS = [
'third_party/node/node_modules/@rollup/wasm-node/dist/wasm-node/bindings_wasm_bg.wasm',
# Exclusion for performance tracing
'third_party/perfetto/src/trace_processor/importers/proto/atoms.descriptor',
# Exclusion for jiff
'third_party/rust/chromium_crates_io/vendor/jiff-tzdb-v0_1/concatenated-zoneinfo.dat',
# Exclusions for safe file extensions
'*.avif',
'*.ttf',
@@ -118,13 +120,13 @@ DOMAIN_EXCLUDE_PREFIXES = [
'third_party/blink/renderer/core/dom/document.cc',
# Exclusion to allow download of sysroots
'build/linux/sysroot_scripts/sysroots.json',
# Licenses and credits
'tools/licenses/licenses.py',
# Google Web Store extension stuff
'extensions/common/api/_api_features.json',
'chrome/common/extensions/api/_api_features.json',
'extensions/common/extension_urls.cc',
'extensions/browser/updater/safe_manifest_parser.cc',
# License/credits stuff
'tools/licenses/licenses.py',
]
# pylint: enable=line-too-long
@@ -255,6 +257,7 @@ def should_domain_substitute(path, relative_path, search_regex, used_dep_set, us
if relative_path_posix.startswith(exclude_prefix):
used_dep_set.add(exclude_prefix)
return False
# Skip LICENSE.* files so that they remain untouched.
for license_path in ['license', 'license.txt', 'license.html']:
if relative_path_posix.endswith('/' + license_path):
return False