We control it in the WebRTC code hosting so why not autoroll it? Bug: None No-Try: True TBR: phoglund@webrtc.org Change-Id: I8b7d6d3b76de145b5b89d80d5d089d585c5f233b Reviewed-on: https://webrtc-review.googlesource.com/66360 Commit-Queue: Oleh Prypin <oprypin@webrtc.org> Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Cr-Commit-Position: refs/heads/master@{#22703}
26 lines
828 B
Python
26 lines
828 B
Python
# DEPS file for unit tests.
|
|
|
|
vars = {
|
|
'chromium_git': 'https://chromium.googlesource.com',
|
|
'chromium_revision': '1b9c098a08e40114e44b6c1ec33ddf95c40b901d',
|
|
}
|
|
|
|
deps = {
|
|
# Entry that is a directory in Chromium, so we're using a Git subtree mirror for it.
|
|
'src/build':
|
|
Var('chromium_git') + '/chromium/src/build' + '@' + '52f7afeca991d96d68cf0507e20dbdd5b845691f',
|
|
|
|
# Entry that's also a DEPS entry in the Chromium DEPS file.
|
|
'src/buildtools':
|
|
Var('chromium_git') + '/chromium/buildtools.git' + '@' + '64e38f0cebdde27aa0cfb405f330063582f9ac76',
|
|
}
|
|
|
|
deps_os = {
|
|
# Entry only present in WebRTC, not Chromium.
|
|
'android': {
|
|
'src/examples/androidtests/third_party/gradle':
|
|
Var('chromium_git') + '/external/github.com/gradle/gradle.git' + '@' +
|
|
'89af43c4d0506f69980f00dde78c97b2f81437f8',
|
|
},
|
|
}
|