DEPS 776 B

123456789101112131415161718192021
  1. # DEPS file for unit tests.
  2. vars = {
  3. 'chromium_git': 'https://chromium.googlesource.com',
  4. 'chromium_revision': '1b9c098a08e40114e44b6c1ec33ddf95c40b901d',
  5. 'ignored_str': Str(''),
  6. }
  7. deps = {
  8. # Entry that is a directory in Chromium, so we're using a Git subtree mirror for it.
  9. 'src/build':
  10. Var('chromium_git') + '/chromium/src/build' + '@' + '52f7afeca991d96d68cf0507e20dbdd5b845691f',
  11. # Entry that's also a DEPS entry in the Chromium DEPS file.
  12. 'src/buildtools':
  13. Var('chromium_git') + '/chromium/buildtools.git' + '@' + '64e38f0cebdde27aa0cfb405f330063582f9ac76',
  14. # Entry only present in libyuv, not Chromium.
  15. 'src/third_party/gflags/src':
  16. Var('chromium_git') + '/external/github.com/gflags/gflags@03bebcb065c83beff83d50ae025a55a4bf94dfca',
  17. }