Pause rolling buildtools

This is done to un-break the roller script, so other deps can be rolled for now.
Example failure: https://ci.chromium.org/p/webrtc/builders/luci.webrtc.cron/Auto-roll%20-%20WebRTC%20DEPS/3040

chromium/buildtools is obsolete, to be replaced with chromium/src/buildtools when the subtree mirror is available.

No-Try: True
Bug: chromium:927867
Change-Id: I340b7d0a79dcb68d9c9e321c2da20476005625f2
Reviewed-on: https://webrtc-review.googlesource.com/c/121701
Commit-Queue: Artem Titarenko <artit@webrtc.org>
Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org>
Reviewed-by: Artem Titarenko <artit@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#26580}
This commit is contained in:
Oleh Prypin 2019-02-07 00:54:28 +01:00 committed by Commit Bot
parent ef288dd267
commit 86c8ad954b
2 changed files with 5 additions and 0 deletions
tools_webrtc/autoroller

View file

@ -28,6 +28,8 @@ def FindSrcDirPath():
# Skip these dependencies (list without solution name prefix).
DONT_AUTOROLL_THESE = [
# TODO(crbug.com/927867): resume rolling this as chromium/src/buildtools.
'src/buildtools',
'src/examples/androidtests/third_party/gradle',
]

View file

@ -24,6 +24,9 @@ from roll_deps import CalculateChangedDeps, FindAddedDeps, \
GetMatchingDepsEntries, ParseDepsDict, ParseLocalDepsFile, UpdateDepsFile, \
ChromiumRevisionUpdate
# HACK to avoid updating unittests just because buildtools roll is disabled.
roll_deps.DONT_AUTOROLL_THESE.remove('src/buildtools')
SRC_DIR = os.path.join(PARENT_DIR, os.pardir, os.pardir)
sys.path.append(os.path.join(SRC_DIR, 'third_party', 'pymock'))
import mock