mirror of
https://chromium.googlesource.com/libyuv/libyuv
synced 2025-12-06 16:56:55 +08:00
Skip cipd dependencies when autorolling.
This is a stop-gap; it will simply cause cipd deps to not be updated, which will probably keep things working for now, but it's not what we want for the long term. Bug: chromium:659808 Change-Id: I292b96f174c8d910c0b5f0196eefd0e5a5f907c2 Reviewed-on: https://chromium-review.googlesource.com/1016380 Reviewed-by: Frank Barchard <fbarchard@chromium.org> Commit-Queue: Frank Barchard <fbarchard@chromium.org>
This commit is contained in:
parent
b8696fde84
commit
5669005fc0
@ -210,6 +210,8 @@ def BuildDepsentryDict(deps_dict):
|
||||
for path, deps_url_spec in deps_subdict.iteritems():
|
||||
# The deps url is either an URL and a condition, or just the URL.
|
||||
if isinstance(deps_url_spec, dict):
|
||||
if deps_url_spec.get('dep_type') == 'cipd':
|
||||
continue
|
||||
deps_url = deps_url_spec['url']
|
||||
else:
|
||||
deps_url = deps_url_spec
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user