Skip to content

Commit

Permalink
Update to Chromium 132.0.6834.83
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahrotahn committed Jan 13, 2025
1 parent ce13975 commit 984d79f
Show file tree
Hide file tree
Showing 75 changed files with 1,608 additions and 57,287 deletions.
2 changes: 1 addition & 1 deletion chromium_version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
131.0.6778.264
132.0.6834.83
7 changes: 6 additions & 1 deletion devutils/update_lists.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@
# 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 = [
Expand Down Expand Up @@ -59,6 +61,7 @@
'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',
Expand Down Expand Up @@ -110,6 +113,8 @@
'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',
Expand Down Expand Up @@ -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()
Expand Down
1,018 changes: 164 additions & 854 deletions domain_substitution.list

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions patches/core/bromite/disable-fetching-field-trials.patch
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Subject: Disable fetching of all field trials

--- a/chrome/browser/flags/android/java/src/org/chromium/chrome/browser/flags/ChromeFeatureList.java
+++ b/chrome/browser/flags/android/java/src/org/chromium/chrome/browser/flags/ChromeFeatureList.java
@@ -56,7 +56,7 @@ public abstract class ChromeFeatureList
@@ -55,7 +55,7 @@ public abstract class ChromeFeatureList
* |kFeaturesExposedToJava| in chrome/browser/flags/android/chrome_feature_list.cc
*/
public static String getFieldTrialParamByFeature(String featureName, String paramName) {
Expand All @@ -19,7 +19,7 @@ Subject: Disable fetching of all field trials
}

/**
@@ -68,8 +68,7 @@ public abstract class ChromeFeatureList
@@ -67,8 +67,7 @@ public abstract class ChromeFeatureList
*/
public static boolean getFieldTrialParamByFeatureAsBoolean(
String featureName, String paramName, boolean defaultValue) {
Expand All @@ -29,7 +29,7 @@ Subject: Disable fetching of all field trials
}

/**
@@ -81,8 +80,7 @@ public abstract class ChromeFeatureList
@@ -80,8 +79,7 @@ public abstract class ChromeFeatureList
*/
public static int getFieldTrialParamByFeatureAsInt(
String featureName, String paramName, int defaultValue) {
Expand All @@ -39,7 +39,7 @@ Subject: Disable fetching of all field trials
}

/**
@@ -94,8 +92,7 @@ public abstract class ChromeFeatureList
@@ -93,8 +91,7 @@ public abstract class ChromeFeatureList
*/
public static double getFieldTrialParamByFeatureAsDouble(
String featureName, String paramName, double defaultValue) {
Expand All @@ -51,7 +51,7 @@ Subject: Disable fetching of all field trials
/**
--- a/components/variations/service/variations_service.cc
+++ b/components/variations/service/variations_service.cc
@@ -227,17 +227,7 @@ bool GetInstanceManipulations(const net:
@@ -225,17 +225,7 @@ bool GetInstanceManipulations(const net:
// Variations seed fetching is only enabled in official Chrome builds, if a URL
// is specified on the command line, and for testing.
bool IsFetchingEnabled() {
Expand Down
Loading

0 comments on commit 984d79f

Please sign in to comment.