- 15 Nov, 2019 40 commits
-
-
chromium-autoroll authored
https://chromium.googlesource.com/external/github.com/google/shaderc/+log/7be1d2e25417..dd6b19ec37f3 git log 7be1d2e25417..dd6b19ec37f3 --date=short --no-merges --format='%ad %ae %s' 2019-11-15 dneto@google.com Android.mk: Avoid polluting NDK build's test tree. (#888) Created with: gclient setdep -r src/third_party/shaderc/src@dd6b19ec37f3 If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/shaderc-chromium-autoroll Please CC radial-bots+chrome-roll@google.com on the revert to ensure that a human is aware of the problem. To report a problem with the AutoRoller itself, please file a bug: https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md TBR=radial-bots+chrome-roll@google.com Bug: None Change-Id: I43efc626f9dccf0d61fe7bb69b703dacef44cd09 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1919484Reviewed-by:
chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Commit-Queue: chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#715810}
-
Josh Nohle authored
This fixes the console error on chrome://proximity-auth, which reads, Uncaught TypeError: Cannot read property 'mojom' of undefined at multidevice_setup.mojom-lite.js:1715 This refers to instances of chromeos.device_sync.mojom.ConnectivityStatus. Bug: 1025053 Change-Id: I1ddbe24f8354b08c0cf3c33cd6e402f4b920b78b Fixed: 1025053 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1919567Reviewed-by:
Kyle Horimoto <khorimoto@chromium.org> Commit-Queue: Kyle Horimoto <khorimoto@chromium.org> Commit-Queue: Josh Nohle <nohle@chromium.org> Auto-Submit: Josh Nohle <nohle@chromium.org> Cr-Commit-Position: refs/heads/master@{#715809}
-
Tina Wang authored
Disabled DemoSetupTest.OnlineSetupFlowErrorPowerwashRequired on linux because it times out consistently and fails the linux-chromeos-dbg. Bug: 1025213 Tbr: agawronska@chromium.org Change-Id: Ib1458c8d2e3018c67f406b8bae2f729a7d3c76b7 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1918313Reviewed-by:
Tina Wang <tinazwang@chromium.org> Commit-Queue: Tina Wang <tinazwang@chromium.org> Cr-Commit-Position: refs/heads/master@{#715808}
-
Albert J. Wong authored
telemetry_perf_unittests currently have the largest amount of overhead (see bug for measurements). It's double that of the chrome_public_test_apk and content_browsertests. Dropping 2 of its shards should allow us to add 4 total new ones which we split between the other two tests. Bug: 1021686 Change-Id: I953854770fc5fdb8e45ec9541e535f4ada5fc031 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1918963Reviewed-by:
Aaron Gable <agable@chromium.org> Commit-Queue: Aaron Gable <agable@chromium.org> Cr-Commit-Position: refs/heads/master@{#715807}
-
Peter Kasting authored
Bug: 1003612 TBR: sky Change-Id: I1078017072fcf921dd40002f04dcb2dd4419cf86 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1913605Reviewed-by:
Peter Kasting <pkasting@chromium.org> Reviewed-by:
Scott Violet <sky@chromium.org> Reviewed-by:
Bruce Dawson <brucedawson@chromium.org> Commit-Queue: Peter Kasting <pkasting@chromium.org> Auto-Submit: Peter Kasting <pkasting@chromium.org> Cr-Commit-Position: refs/heads/master@{#715806}
-
Xiaoqian Dai authored
Visual adjustment based on the feedback from UX. Bug: 997885 Change-Id: I8240ba880d5969fcfe2f133bfbbd7874f9f705d5 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1919425Reviewed-by:
Xiyuan Xia <xiyuan@chromium.org> Commit-Queue: Xiaoqian Dai <xdai@chromium.org> Cr-Commit-Position: refs/heads/master@{#715805}
-
Manu Cornet authored
Currently, as soon as a drag or an animation to and from the home launcher starts, we immediately animate to the final state of the shelf and the hotseat. This can be a little surprising, for instance if the shelf immediately disappears. This CL changes the flow so that the transition happens at mid-point. It has the nice side effect that if the user performs a drag and then goes back and forth without releasing, we update the state accordingly each time the mid point is reached. Bug: 1006013 Change-Id: I0c6dd1cd044f190fd554cd343686d9af766b4de4 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1888653Reviewed-by:
Toni Baržić <tbarzic@chromium.org> Reviewed-by:
Xiyuan Xia <xiyuan@chromium.org> Commit-Queue: Manu Cornet <manucornet@chromium.org> Cr-Commit-Position: refs/heads/master@{#715804}
-
Tom Bergan authored
Suppose the user navigates to A, then B, then clicks "back". There are two cases: 1. If A was rendered as a preview, then the "back" navigation should also render a preview. Just before "back" is clicked, the navigation history will look like this: litepages.googlezip.net/p?u=A litepages.googlezip.net/p?u=B After the "back" click, Chrome tries to navigate to this URL: litepages.googlezip.net/p?u=A However, previews_lite_page_redirect_url_loader_interceptor.cc was rewriting that URL to "A", which caused us to render the original page rather than a preview. This CL fixes that problem to rewrite to "A" only when the nav is not a forward/back nav. 2. If A was not rendered as a preview, then the "back" navigation should not render a preview either. Just before "back" is clicked, the navigation history will look like this: A B Prior to this CL, Chrome would attempt a preview for "A" on the back navigation if triggering conditions allowed. This CL fixes that problem by disabling LPR on forward/back navs when the prior nav was not a preview. Both of these fixes are guarded by Finch so this CL can be merged back to M79. R=robertogden@chromium.org, tbansal@chromium.org Bug: 1024487 Change-Id: I838fe5c985a423e0ed42e49fcbc0eaa0d229d2fb Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1915067 Auto-Submit: Tom Bergan <tombergan@chromium.org> Reviewed-by:
Robert Ogden <robertogden@chromium.org> Commit-Queue: Tom Bergan <tombergan@chromium.org> Cr-Commit-Position: refs/heads/master@{#715803}
-
Min Qin authored
The latter is deprecated, and doesn't seem to support thread pool environment. So switching to the former. BUG=1009839 Change-Id: Ieef5e65b6220d46cd262f1550324f8636dbeb68d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1918221 Commit-Queue: Min Qin <qinmin@chromium.org> Reviewed-by:
Xing Liu <xingliu@chromium.org> Cr-Commit-Position: refs/heads/master@{#715802}
-
Stephen Chenney authored
Requested to help stabilize the UKM aggregation pipeline, and not essential to our needs. R: rkaplow@chromium.org Bug: 1001199 Change-Id: I83779953ee8f068af95ed3d2285de25d7adb95a6 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1918949 Auto-Submit: Stephen Chenney <schenney@chromium.org> Reviewed-by:
Robert Kaplow <rkaplow@chromium.org> Commit-Queue: Robert Kaplow <rkaplow@chromium.org> Cr-Commit-Position: refs/heads/master@{#715801}
-
chromium-autoroll authored
https://android.googlesource.com/platform/external/perfetto.git/+log/cde6556813f7..aee0c115ad21 git log cde6556813f7..aee0c115ad21 --date=short --no-merges --format='%ad %ae %s' 2019-11-15 lalitm@google.com Merge "trace_processor: fix sqlvalue comparision" 2019-11-15 lalitm@google.com trace_processor: remove ids from test files Created with: gclient setdep -r src/third_party/perfetto@aee0c115ad21 If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/perfetto-chromium-autoroll Please CC perfetto-bugs@google.com on the revert to ensure that a human is aware of the problem. To report a problem with the AutoRoller itself, please file a bug: https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md TBR=perfetto-bugs@google.com Bug: None Change-Id: Ieb8dcc9989551b6b60ed388a2dc5e44b2da650c4 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1919481Reviewed-by:
chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Commit-Queue: chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#715800}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/9614e65fc67b..0b9e8ed45cb0 Created with: gclient setdep -r src-internal@0b9e8ed45cb0 If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://skia-autoroll.corp.goog/r/src-internal-chromium-autoroll Please CC jbudorick@google.com on the revert to ensure that a human is aware of the problem. To report a problem with the AutoRoller itself, please file a bug: https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md CQ_INCLUDE_TRYBOTS=luci.chrome.try:linux-chromeos-chrome TBR=jbudorick@google.com Bug: chromium:None Change-Id: I4aecebc2fb6125bbab227f36f55db085465a185e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1919482Reviewed-by:
chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Commit-Queue: chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#715799}
-
Mikel Astiz authored
The test suite already instantiates a FieldTrialList as per https://chromium-review.googlesource.com/c/chromium/src/+/1883567 so it's no longer necessary to do so explicitly in tests. This patch addresses unit tests under: /components/sync This CL was uploaded by git cl split. R=vitaliii@chromium.org Bug: 1018667 Change-Id: I361805aad758e19356c63f6321b890b9cd4715ff Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1917764 Auto-Submit: Mikel Astiz <mastiz@chromium.org> Reviewed-by:
vitaliii <vitaliii@chromium.org> Commit-Queue: vitaliii <vitaliii@chromium.org> Cr-Commit-Position: refs/heads/master@{#715798}
-
Alex Cooper authored
Removes vr dependencies on non-public gamepad directories. The actual dependencies were removed in previous device changelists. Fixed: 773463 Change-Id: Ib58081bdfe5dd4627045db2cd6d89cf1bb1ba976 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1914835 Commit-Queue: Brandon Jones <bajones@chromium.org> Reviewed-by:
Brandon Jones <bajones@chromium.org> Auto-Submit: Alexander Cooper <alcooper@chromium.org> Cr-Commit-Position: refs/heads/master@{#715797}
-
Mikel Astiz authored
This URL is intended to be used for the case where a reauth is required in order to retrieve sync encryption keys. Bug: 1019687 Change-Id: Ib840847ca66efb5332835cad43a5c60f9eb9dffc Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1897656 Commit-Queue: Mikel Astiz <mastiz@chromium.org> Reviewed-by:
David Roger <droger@chromium.org> Cr-Commit-Position: refs/heads/master@{#715796}
-
Bruce Dawson authored
Recent versions of d3dcompiler_47.dll require the Universal CRT (UCRT) and some Windows 7 machines have old versions of the UCRT that lead to memory corruption crashes. This has blocked us from shipping the new DLL. This change will let us measure the distribution of UCRT versions so that we can decide how to proceed. Test: Manual test on two machines with different UCRT versions Bug: 920704 Change-Id: I89635626610f7ebe91dc375a1a744001668236fd Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1912836Reviewed-by:
Mark Pearson <mpearson@chromium.org> Commit-Queue: Bruce Dawson <brucedawson@chromium.org> Cr-Commit-Position: refs/heads/master@{#715795}
-
Chromium WPT Sync authored
Using wpt-import in Chromium d6caa886. With Chromium commits locally applied on WPT: 788a3004 "Fix failing Fetch Metadata WPT" b16db925 "[Trusted Types] Add test for duplicate names in non-enforcing mode." e83dd93c "Limit backtracking on regexp called from blink." 6e3e930c "Change `sec-fetch-mode` from `no-cors` to `navigate` for <embed> / <object>." Note to sheriffs: This CL imports external tests and adds expectations for those tests; if this CL is large and causes a few new failures, please fix the failures by adding new lines to TestExpectations rather than reverting. See: https://chromium.googlesource.com/chromium/src/+/master/docs/testing/web_platform_tests.md NOAUTOREVERT=true TBR=foolip No-Export: true Change-Id: I92f09e0999550d8f84b0e9743ef28404d9fccbfd Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1917098Reviewed-by:
WPT Autoroller <wpt-autoroller@chops-service-accounts.iam.gserviceaccount.com> Commit-Queue: WPT Autoroller <wpt-autoroller@chops-service-accounts.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#715794}
-
Mikel Astiz authored
The test suite already instantiates a FieldTrialList as per https://chromium-review.googlesource.com/c/chromium/src/+/1883567 so it's no longer necessary to do so explicitly in tests. This patch addresses unit tests under: /components/autofill/core/browser/payments This CL was uploaded by git cl split. R=jsaul@google.com Bug: 1018667 Change-Id: I2b8c3aa9abf613235936510d6678f28bf7bc858e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1917511 Auto-Submit: Mikel Astiz <mastiz@chromium.org> Reviewed-by:
Jared Saul <jsaul@google.com> Commit-Queue: Mikel Astiz <mastiz@chromium.org> Cr-Commit-Position: refs/heads/master@{#715793}
-
Stephen Chenney authored
Bug: 1012732 Change-Id: I08a80067e26ba62593f46a6d7e4c89efae1b5910 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1918098 Auto-Submit: Stephen Chenney <schenney@chromium.org> Reviewed-by:
vmpstr <vmpstr@chromium.org> Commit-Queue: vmpstr <vmpstr@chromium.org> Cr-Commit-Position: refs/heads/master@{#715792}
-
chromium-autoroll authored
https://skia.googlesource.com/skia.git/+log/ea03373a6d73..1496758da42e git log ea03373a6d73..1496758da42e --date=short --no-merges --format='%ad %ae %s' 2019-11-15 kjlubick@google.com [canvaskit] Request an 8 bit stencil buffer from the WebGL 1/2 context 2019-11-15 robertphillips@google.com Respect the max indexBuffer limits in the bulk texture draw API (take 2) Created with: gclient setdep -r src/third_party/skia@1496758da42e If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/skia-autoroll Please CC halcanary@google.com on the revert to ensure that a human is aware of the problem. To report a problem with the AutoRoller itself, please file a bug: https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md CQ_INCLUDE_TRYBOTS=luci.chromium.try:android_optional_gpu_tests_rel;luci.chromium.try:linux-blink-rel;luci.chromium.try:linux-chromeos-compile-dbg;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel TBR=halcanary@google.com Bug: chromium:b/143572065 Change-Id: I414a4b63d5db1cf812791b0281a9bad433c6fc53 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1919479Reviewed-by:
chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Commit-Queue: chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#715791}
-
Dale Curtis authored
This updates these classes to use the new BT.2020 color space as well as adds support for a few more fast paths on the 8-bit track. BUG=960620 Change-Id: Ib1122d4429b27822d25b2d2369bd4ed5a7974607 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1896336 Commit-Queue: Dale Curtis <dalecurtis@chromium.org> Auto-Submit: Dale Curtis <dalecurtis@chromium.org> Reviewed-by:
Thomas Guilbert <tguilbert@chromium.org> Cr-Commit-Position: refs/heads/master@{#715790}
-
Tim Volodine authored
Add support for safebrowsing interstitials, i.e. showing of special warning pages when navigating to unsafe urls with threats like phishing, malware, unwanted software and billing. In this patch the default implementation in components/safe_browsing/ is used for the actual interstitials. BUG=1015418 Change-Id: I102c587a59c26152127f52315232d036d9b27663 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1917260 Commit-Queue: Tim Volodine <timvolodine@chromium.org> Reviewed-by:
Richard Coles <torne@chromium.org> Cr-Commit-Position: refs/heads/master@{#715789}
-
Alex Ilin authored
This CL changes usages of deprecated base::SharedMemory to base::UnsafeSharedMemoryRegion. No functional changes. Bug: 795291 Change-Id: I6d58ab32cb054760abaf5554e96d634569b69ccd Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1919339Reviewed-by:
Gary Kacmarcik <garykac@chromium.org> Commit-Queue: Alex Ilin <alexilin@chromium.org> Cr-Commit-Position: refs/heads/master@{#715788}
-
Xiaohui Chen authored
R=updowndota Bug: None Test: CQ Change-Id: I83ab05344887f959381b392e9a9d5b47fc62b9f0 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1916532Reviewed-by:
Yue Li <updowndota@chromium.org> Commit-Queue: Xiaohui Chen <xiaohuic@chromium.org> Cr-Commit-Position: refs/heads/master@{#715787}
-
Rohit Rao authored
Partially reverts https://chromium-review.googlesource.com/568148. BUG=1024115 Change-Id: I8f3890ed34503a6a4b7cac2624c63a6aa520cb2d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1912891 Commit-Queue: Rohit Rao <rohitrao@chromium.org> Reviewed-by:
Maksim Ivanov <emaxx@chromium.org> Cr-Commit-Position: refs/heads/master@{#715786}
-
Chris Mumford authored
TestURLLoaderThrottle is only destroyed once, so OnceClosure is appropriate. Bug: 1007835 Change-Id: I2d6b8d4a0f4afa2591ec394c86c8135b0e62fbd6 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1911708 Commit-Queue: Chris Mumford <cmumford@google.com> Reviewed-by:
Matt Falkenhagen <falken@chromium.org> Cr-Commit-Position: refs/heads/master@{#715785}
-
Collin Baker authored
When NativeViewHostAura is detaching an aura::Window, it sets the window's bounds to that of the host's clipping window. This results in a resize of the hosted window if part of it is out of the host's bounds. This fix simply removes the bounds change. Fixed: 1024046 Change-Id: If9ef2b15e05985428b7f648f0508ee224a5de13a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1919427 Commit-Queue: Collin Baker <collinbaker@chromium.org> Commit-Queue: Scott Violet <sky@chromium.org> Auto-Submit: Collin Baker <collinbaker@chromium.org> Reviewed-by:
Scott Violet <sky@chromium.org> Cr-Commit-Position: refs/heads/master@{#715784}
-
Henrique Nakashima authored
These checks guard against SharedPreferences key reuse and ensure the constants in ChromePreferenceKeys match the list of keys in use. Bug: 1022107, 1013781 Change-Id: Ic41464e7c580aabfdabe1541c12f793ea424ec27 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1909294 Commit-Queue: Henrique Nakashima <hnakashima@chromium.org> Reviewed-by:
Natalie Chouinard <chouinard@chromium.org> Reviewed-by:
Theresa <twellington@chromium.org> Cr-Commit-Position: refs/heads/master@{#715783}
-
siyua authored
Currently the tooltip message does not update when the flow is in different state e.g. saving pending, saving succeeded, saving failed. Adding new tooltip messages for these states. All the changes have been approved by Chrome UX writers. TBR=cpu@chromium.org Bug: 1023531, 932818 Change-Id: Ic97923c6976d8623088ac75a53c54cebf34a0cb6 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1913716 Commit-Queue: Siyu An <siyua@chromium.org> Reviewed-by:
Evan Stade <estade@chromium.org> Reviewed-by:
Jared Saul <jsaul@google.com> Cr-Commit-Position: refs/heads/master@{#715782}
-
W. James MacLean authored
This test sometimes fails because the child iframe containing the text area isn't focused when we check at the start of the test. This CL forces it to be focused. Bug: 1024672 Change-Id: I14c04823bee5d6e04be9cd4c5d0848bf31247dba Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1919325Reviewed-by:
Lei Zhang <thestig@chromium.org> Commit-Queue: James MacLean <wjmaclean@chromium.org> Cr-Commit-Position: refs/heads/master@{#715781}
-
Ross McIlroy authored
This CL was created automatically with tools/perf/update_wpr script R=perezju@chromium.org Change-Id: I040802647192a99b5bdc3235f7501d282bcefbc5 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1917372Reviewed-by:
Juan Antonio Navarro Pérez <perezju@chromium.org> Commit-Queue: Ross McIlroy <rmcilroy@chromium.org> Cr-Commit-Position: refs/heads/master@{#715780}
-
Takumi Fujimoto authored
When the Cast dialog is closed, MediaRouterViewsUI gets destroyed. If that happened before casting succeeded, we weren't recording the cast source. This CL fixes that. Change-Id: I58fb7d9db16867bce1728788b8c21694b33d3dc5 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1904821Reviewed-by:
Brandon Tolsch <btolsch@chromium.org> Commit-Queue: Takumi Fujimoto <takumif@chromium.org> Cr-Commit-Position: refs/heads/master@{#715779}
-
Lindsay Pasricha authored
CIPD packages: infra_internal/ios/xcode/mac 11b53 infra_internal/ios/xcode/ios 11b53 Bug: 1018869b Change-Id: I36cee41f208cbf27f733397a445d330fdda7bc9c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1917379Reviewed-by:
Rohit Rao <rohitrao@chromium.org> Commit-Queue: Lindsay Pasricha <lindsayw@chromium.org> Cr-Commit-Position: refs/heads/master@{#715778}
-
Wei-Yin Chen (陳威尹) authored
Test ReturnToChromeTest#testInitialScrollIndex fails deterministically on some Nexus 5X bots. Disable them for now. Bug: 1025241 Change-Id: I1e4732e0ad7534823183e6a1a314f6fe8223dcfe Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1919426Reviewed-by:
Yue Zhang <yuezhanggg@chromium.org> Commit-Queue: Wei-Yin Chen (陳威尹) <wychen@chromium.org> Cr-Commit-Position: refs/heads/master@{#715777}
-
Tina Wang authored
Because of consistently timing out on linux. Bug: 1025213 Tbr: xuyuan@chromium.org Change-Id: Id7e031f6ee29f0ef7d7a9484a2ca5dab242a701e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1918115Reviewed-by:
Tina Wang <tinazwang@chromium.org> Commit-Queue: Tina Wang <tinazwang@chromium.org> Cr-Commit-Position: refs/heads/master@{#715776}
-
Aaron Gable authored
These tests run successfully elsewhere, so there's no reason to continue running them directly on the bots instead of swarmed. This also brings in polymer_tools_python_unittests, because those are also part of win_specific_isolated_scripts, and having unity between these and other non-ToT win builders is useful. Bug: 1013720 Change-Id: If86065116306a448e43cd19b445820ef0ca7ad58 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1917328 Commit-Queue: Aaron Gable <agable@chromium.org> Reviewed-by:
John Budorick <jbudorick@chromium.org> Reviewed-by:
Greg Thompson <grt@chromium.org> Cr-Commit-Position: refs/heads/master@{#715775}
-
chromium-autoroll authored
If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/fuchsia-sdk-chromium-autoroll Please CC cr-fuchsia+bot@chromium.org on the revert to ensure that a human is aware of the problem. To report a problem with the AutoRoller itself, please file a bug: https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md CQ_INCLUDE_TRYBOTS=luci.chromium.try:fuchsia-arm64-cast;luci.chromium.try:fuchsia-x64-cast TBR=cr-fuchsia+bot@chromium.org Change-Id: If15bdb66b060c74a52fefa5002f3ef79c8714911 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1918427Reviewed-by:
chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Commit-Queue: chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#715774}
-
chromium-autoroll authored
https://swiftshader.googlesource.com/SwiftShader.git/+log/102fd19c65f4..cc221e838b01 git log 102fd19c65f4..cc221e838b01 --date=short --no-merges --format='%ad %ae %s' 2019-11-15 chrisforbes@google.com Update deqp to b64acc6c3371607583b3aa6d12c7290b4aaae747 Created with: gclient setdep -r src/third_party/swiftshader@cc221e838b01 If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/swiftshader-chromium-autoroll Please CC swiftshader-team+autoroll@google.com on the revert to ensure that a human is aware of the problem. To report a problem with the AutoRoller itself, please file a bug: https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md CQ_INCLUDE_TRYBOTS=luci.chromium.try:android_optional_gpu_tests_rel;luci.chromium.try:linux_chromium_msan_rel_ng;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel TBR=swiftshader-team+autoroll@google.com Bug: chromium:b/144307043 Change-Id: Ia90e4eff05e542007b9ce88dae4b3f58edaef7da Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1919366Reviewed-by:
chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Commit-Queue: chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#715773}
-
v8-ci-autoroll-builder authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/35d75b77..adab0ef7 Please follow these instructions for assigning/CC'ing issues: https://v8.dev/docs/triage-issues Please close rolling in case of a roll revert: https://v8-roll.appspot.com/ This only works with a Google account. CQ_INCLUDE_TRYBOTS=luci.chromium.try:linux-blink-rel CQ_INCLUDE_TRYBOTS=luci.chromium.try:linux_optional_gpu_tests_rel CQ_INCLUDE_TRYBOTS=luci.chromium.try:mac_optional_gpu_tests_rel CQ_INCLUDE_TRYBOTS=luci.chromium.try:win_optional_gpu_tests_rel CQ_INCLUDE_TRYBOTS=luci.chromium.try:android_optional_gpu_tests_rel TBR=hablich@chromium.org,v8-waterfall-sheriff@grotations.appspotmail.com Change-Id: Icfd9b98189c620c3bcc81e16291fc87891588530 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1917048Reviewed-by:
v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Commit-Queue: v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#715772}
-
Robert Sesek authored
Bug: 1004691 Change-Id: Iba2a3a59708a7d6ef62ea73087475825fe8d4c34 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1912888Reviewed-by:
Greg Kerr <kerrnel@chromium.org> Commit-Queue: Robert Sesek <rsesek@chromium.org> Cr-Commit-Position: refs/heads/master@{#715771}
-