Skip to content

Commit 77e83bc

Browse files
Victor Hugo Vianna SilvaV8 LUCI CQ
authored andcommitted
Roll webpagereplay into crossbench
Catapult binaries updated in crrev.com/c/6667785. Blamelist: crrev.com/c/6680390 Fix injected script not run if Content-Security-Policy present >1x crrev.com/c/6667905 Support injecting scripts in --rules_file Change-Id: I5254ad62b044385f14b1c6689ec83fcc05ea4f86 Reviewed-on: https://chromium-review.googlesource.com/c/crossbench/+/6667892 Reviewed-by: John Chen <[email protected]> Commit-Queue: Victor Vianna <[email protected]> Auto-Submit: Victor Vianna <[email protected]>
1 parent dbd6b22 commit 77e83bc

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

DEPS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ vars = {
5353
# Three lines of non-changing comments so that
5454
# the commit queue can handle CLs rolling webpagereplay
5555
# and whatever else without interference from each other.
56-
'webpagereplay_revision': 'f3397454e39a7c0b35af192e6d8a1896af7bd9ec',
56+
'webpagereplay_revision': 'cc9256e0bd61f95e7b8bd394a98c208165aa8889',
5757
# Three lines of non-changing comments so that
5858
# the commit queue can handle CLs rolling webpagereplay
5959
# and whatever else without interference from each other.

crossbench/network/replay/wpr.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -44,25 +44,25 @@ def url(self) -> str:
4444
# See third_party/catapult/telemetry/telemetry/binary_dependencies.json
4545
WPR_PREBUILT_LOOKUP: Final[Mapping[tuple[str, str], WPRCloudBinary]] = {
4646
("android", "arm64"):
47-
WPRCloudBinary("7ed4026aaef69a46b99f65daeded6f73d1242f13"),
47+
WPRCloudBinary("ea9c5a7b7199f29ae67e658a14a9cbd6d0cdcd32"),
4848
("android", "arm32"):
49-
WPRCloudBinary("98365cc4e722f0996b18529e00fd03b3de60bb9a"),
49+
WPRCloudBinary("f8af16f14f785ce501c7857e8e16ec4ec9824518"),
5050
("android", "x64"):
51-
WPRCloudBinary("70e240a199128cd67cc25c6639ca3f785f941aa3"),
51+
WPRCloudBinary("2a9db0cbbb6111182dbe8d866c16e5e90951119d"),
5252
# On arm64 ChromeOS, use the same binary as arm64 Linux.
5353
("chromeos_ssh", "arm64"):
54-
WPRCloudBinary("7ed4026aaef69a46b99f65daeded6f73d1242f13"),
54+
WPRCloudBinary("ea9c5a7b7199f29ae67e658a14a9cbd6d0cdcd32"),
5555
# On x64 ChromeOS, use the same binary as x64 Linux.
5656
("chromeos_ssh", "x64"):
57-
WPRCloudBinary("70e240a199128cd67cc25c6639ca3f785f941aa3"),
57+
WPRCloudBinary("2a9db0cbbb6111182dbe8d866c16e5e90951119d"),
5858
("linux", "x64"):
59-
WPRCloudBinary("70e240a199128cd67cc25c6639ca3f785f941aa3"),
59+
WPRCloudBinary("2a9db0cbbb6111182dbe8d866c16e5e90951119d"),
6060
("macos", "arm64"):
61-
WPRCloudBinary("5f2b7d7d463c47ea365bf7ea8936bb5ad8a212f0"),
61+
WPRCloudBinary("b85359c0cd8b9474e2e52749a83ab7ba8e00bbc4"),
6262
("macos", "x64"):
63-
WPRCloudBinary("fa01d104309b62d9ac10682252c595aad9239789"),
63+
WPRCloudBinary("ea7a1780f7fd208f56b3c2089b481cfd04fec65c"),
6464
("win", "x64"):
65-
WPRCloudBinary("964bff63766054c8c1c1f1c01acedcf0770a8da7"),
65+
WPRCloudBinary("ec8a28d05918b299f96d81039e8d656642fc0e9c"),
6666
}
6767

6868

0 commit comments

Comments
 (0)