• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1use_relative_paths = True
2
3vars = {
4  'github': 'https://github.com',
5
6  'effcee_revision': 'c7b4db79f340f7a9981e8a484f6d5785e24242d1',
7
8  'googletest_revision': '2f2e72bae991138cedd0e3d06a115022736cd568',
9
10  # Use protobufs before they gained the dependency on abseil
11  'protobuf_revision': 'v3.13.0.1',
12
13  're2_revision': 'b025c6a3ae05995660e3b882eb3277f4399ced1a',
14  'spirv_headers_revision': 'aa331ab0ffcb3a67021caa1a0c1c9017712f2f31',
15}
16
17deps = {
18  'external/effcee':
19      Var('github') + '/google/effcee.git@' + Var('effcee_revision'),
20
21  'external/googletest':
22      Var('github') + '/google/googletest.git@' + Var('googletest_revision'),
23
24  'external/protobuf':
25      Var('github') + '/protocolbuffers/protobuf.git@' + Var('protobuf_revision'),
26
27  'external/re2':
28      Var('github') + '/google/re2.git@' + Var('re2_revision'),
29
30  'external/spirv-headers':
31      Var('github') +  '/KhronosGroup/SPIRV-Headers.git@' +
32          Var('spirv_headers_revision'),
33}
34
35