• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# DEPS file for unit tests.
2
3vars = {
4  'chromium_git': 'https://chromium.googlesource.com',
5  'chromium_revision': '1b9c098a08e40114e44b6c1ec33ddf95c40b901d',
6}
7
8deps = {
9  # Entry that is a directory in Chromium, so we're using a Git subtree mirror for it.
10  'src/build':
11    Var('chromium_git') + '/chromium/src/build' + '@' + '52f7afeca991d96d68cf0507e20dbdd5b845691f',
12
13  # Entry that's also a DEPS entry in the Chromium DEPS file.
14  'src/third_party/depot_tools':
15      Var('chromium_git') + '/chromium/tools/depot_tools.git' + '@' + 'b9ae2ca9a55d9b754c313f4c9e9f0f3b804a5e44',
16
17  # Entry that's also a CIPD entry in the Chromium DEPS file.
18  'src/third_party/xstream': {
19      'packages': [
20          {
21              'package': 'chromium/third_party/xstream',
22              'version': 'version:1.4.8-cr0',
23          },
24      ],
25      'condition': 'checkout_android',
26      'dep_type': 'cipd',
27  },
28
29  # Script expects to find these markers.
30  # === ANDROID_DEPS Generated Code Start ===
31  # === ANDROID_DEPS Generated Code End ===
32}
33
34deps_os = {
35  # Entry only present in WebRTC, not Chromium.
36  'android': {
37    'src/examples/androidtests/third_party/gradle':
38      Var('chromium_git') + '/external/github.com/gradle/gradle.git' + '@' +
39        '89af43c4d0506f69980f00dde78c97b2f81437f8',
40  },
41}
42