mirror of
https://github.com/morgan9e/helium
synced 2026-04-15 00:44:06 +09:00
Update to Chromium 132.0.6834.83
This commit is contained in:
@@ -28,6 +28,8 @@ sys.path.pop(0)
|
||||
# Encoding for output files
|
||||
_ENCODING = 'UTF-8'
|
||||
|
||||
# pylint: disable=line-too-long
|
||||
|
||||
# NOTE: Include patterns have precedence over exclude patterns
|
||||
# pathlib.Path.match() paths to include in binary pruning
|
||||
PRUNING_INCLUDE_PATTERNS = [
|
||||
@@ -59,6 +61,7 @@ PRUNING_EXCLUDE_PATTERNS = [
|
||||
'third_party/icu/android/icudtl.dat',
|
||||
'third_party/icu/common/icudtb.dat',
|
||||
# Exclusion for rollup v4.0+
|
||||
'third_party/devtools-frontend/src/node_modules/@rollup/wasm-node/dist/wasm-node/bindings_wasm_bg.wasm',
|
||||
'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',
|
||||
@@ -110,6 +113,8 @@ DOMAIN_EXCLUDE_PREFIXES = [
|
||||
'third_party/blink/renderer/core/dom/document.cc',
|
||||
]
|
||||
|
||||
# pylint: enable=line-too-long
|
||||
|
||||
# pathlib.Path.match() patterns to include in domain substitution
|
||||
DOMAIN_INCLUDE_PATTERNS = [
|
||||
'*.h', '*.hh', '*.hpp', '*.hxx', '*.cc', '*.cpp', '*.cxx', '*.c', '*.h', '*.json', '*.js',
|
||||
@@ -257,7 +262,7 @@ def compute_lists_proc(path, source_tree, search_regex):
|
||||
symlink_set = set()
|
||||
if path.is_file():
|
||||
relative_path = path.relative_to(source_tree)
|
||||
if not any(cpath in str(relative_path.as_posix()) for cpath in CONTINGENT_PATHS):
|
||||
if not any(str(relative_path.as_posix()).startswith(cpath) for cpath in CONTINGENT_PATHS):
|
||||
if path.is_symlink():
|
||||
try:
|
||||
resolved_relative_posix = path.resolve().relative_to(source_tree).as_posix()
|
||||
|
||||
Reference in New Issue
Block a user