0

Roll androidx from mQTmkp_WX... to VYT-kV9hO...

If this roll has caused a breakage, revert this CL and stop the roller
using the controls here:
https://autoroll.skia.org/r/androidx-chromium
Please CC mheikal@google.com,clank-library-failures@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/+doc/master/autoroll/README.md

Modification: Disable new lint check because it crashes lint.
Tbr: mheikal@google.com,clank-library-failures@google.com
Change-Id: I2af46b1a26135181a33de4a8c2a360c0efaff6bb
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2878102
Reviewed-by: Peter Kotwicz <pkotwicz@chromium.org>
Commit-Queue: Mohamed Heikal <mheikal@chromium.org>
Cr-Commit-Position: refs/heads/master@{#881266}
This commit is contained in:
Mohamed Heikal
2021-05-10 22:17:16 +00:00
committed by Chromium LUCI CQ
parent d378581106
commit bd6e688305
2 changed files with 8 additions and 1 deletions
DEPS
build/android/gyp

2
DEPS

@ -730,7 +730,7 @@ deps = {
'packages': [
{
'package': 'chromium/third_party/androidx',
'version': 'mQTmkp_WX5dajtrquUqkoBQ7BMCrjkU1X2DNaEkKZ5AC',
'version': 'VYT-kV9hO7iazLkZ6_B5NPXMxTwyjcFI3hHKKWdbRvIC',
},
],
'condition': 'checkout_android',

@ -218,6 +218,13 @@ def _RunLint(lint_binary_path,
'--disable',
','.join(_DISABLED_ALWAYS),
]
# Crashes lint itself, see b/187524311
# Only disable if we depend on androidx.fragment (otherwise lint fails due to
# non-existent check).
if any('androidx_fragment_fragment' in aar for aar in aars):
cmd.extend(['--disable', 'DialogFragmentCallbacksDetector'])
if baseline:
cmd.extend(['--baseline', baseline])
if testonly_target: