Skip to content

Commit 984d79f

Browse files
committed
Update to Chromium 132.0.6834.83
1 parent ce13975 commit 984d79f

File tree

75 files changed

+1608
-57287
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+1608
-57287
lines changed

chromium_version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
131.0.6778.264
1+
132.0.6834.83

devutils/update_lists.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@
2828
# Encoding for output files
2929
_ENCODING = 'UTF-8'
3030

31+
# pylint: disable=line-too-long
32+
3133
# NOTE: Include patterns have precedence over exclude patterns
3234
# pathlib.Path.match() paths to include in binary pruning
3335
PRUNING_INCLUDE_PATTERNS = [
@@ -59,6 +61,7 @@
5961
'third_party/icu/android/icudtl.dat',
6062
'third_party/icu/common/icudtb.dat',
6163
# Exclusion for rollup v4.0+
64+
'third_party/devtools-frontend/src/node_modules/@rollup/wasm-node/dist/wasm-node/bindings_wasm_bg.wasm',
6265
'third_party/node/node_modules/@rollup/wasm-node/dist/wasm-node/bindings_wasm_bg.wasm',
6366
# Exclusion for performance tracing
6467
'third_party/perfetto/src/trace_processor/importers/proto/atoms.descriptor',
@@ -110,6 +113,8 @@
110113
'third_party/blink/renderer/core/dom/document.cc',
111114
]
112115

116+
# pylint: enable=line-too-long
117+
113118
# pathlib.Path.match() patterns to include in domain substitution
114119
DOMAIN_INCLUDE_PATTERNS = [
115120
'*.h', '*.hh', '*.hpp', '*.hxx', '*.cc', '*.cpp', '*.cxx', '*.c', '*.h', '*.json', '*.js',
@@ -257,7 +262,7 @@ def compute_lists_proc(path, source_tree, search_regex):
257262
symlink_set = set()
258263
if path.is_file():
259264
relative_path = path.relative_to(source_tree)
260-
if not any(cpath in str(relative_path.as_posix()) for cpath in CONTINGENT_PATHS):
265+
if not any(str(relative_path.as_posix()).startswith(cpath) for cpath in CONTINGENT_PATHS):
261266
if path.is_symlink():
262267
try:
263268
resolved_relative_posix = path.resolve().relative_to(source_tree).as_posix()

domain_substitution.list

Lines changed: 164 additions & 854 deletions
Large diffs are not rendered by default.

patches/core/bromite/disable-fetching-field-trials.patch

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Subject: Disable fetching of all field trials
1010

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

2121
/**
22-
@@ -68,8 +68,7 @@ public abstract class ChromeFeatureList
22+
@@ -67,8 +67,7 @@ public abstract class ChromeFeatureList
2323
*/
2424
public static boolean getFieldTrialParamByFeatureAsBoolean(
2525
String featureName, String paramName, boolean defaultValue) {
@@ -29,7 +29,7 @@ Subject: Disable fetching of all field trials
2929
}
3030

3131
/**
32-
@@ -81,8 +80,7 @@ public abstract class ChromeFeatureList
32+
@@ -80,8 +79,7 @@ public abstract class ChromeFeatureList
3333
*/
3434
public static int getFieldTrialParamByFeatureAsInt(
3535
String featureName, String paramName, int defaultValue) {
@@ -39,7 +39,7 @@ Subject: Disable fetching of all field trials
3939
}
4040

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

0 commit comments

Comments
 (0)