DEPS 970 B

12345678910111213141516171819202122232425262728293031323334
  1. use_relative_paths = True
  2. vars = {
  3. 'github': 'https://github.com',
  4. 'effcee_revision': 'c7b4db79f340f7a9981e8a484f6d5785e24242d1',
  5. 'googletest_revision': '750d67d809700ae8fca6d610f7b41b71aa161808',
  6. # Use protobufs before they gained the dependency on abseil
  7. 'protobuf_revision': 'v3.13.0.1',
  8. 're2_revision': '3a8436ac436124a57a4e22d5c8713a2d42b381d7',
  9. 'spirv_headers_revision': 'aa331ab0ffcb3a67021caa1a0c1c9017712f2f31',
  10. }
  11. deps = {
  12. 'external/effcee':
  13. Var('github') + '/google/effcee.git@' + Var('effcee_revision'),
  14. 'external/googletest':
  15. Var('github') + '/google/googletest.git@' + Var('googletest_revision'),
  16. 'external/protobuf':
  17. Var('github') + '/protocolbuffers/protobuf.git@' + Var('protobuf_revision'),
  18. 'external/re2':
  19. Var('github') + '/google/re2.git@' + Var('re2_revision'),
  20. 'external/spirv-headers':
  21. Var('github') + '/KhronosGroup/SPIRV-Headers.git@' +
  22. Var('spirv_headers_revision'),
  23. }