• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1use_relative_paths = True
2
3vars = {
4  'github': 'https://github.com',
5
6  'abseil_revision': '79ca5d7aad63973c83a4962a66ab07cd623131ea',
7
8  'effcee_revision': '19b4aa87af25cb4ee779a071409732f34bfc305c',
9
10  'googletest_revision': '40412d85124f7c6f3d88454583c4633e5e10fc8c',
11
12  # Use protobufs before they gained the dependency on abseil
13  'protobuf_revision': 'v21.12',
14
15  're2_revision': 'e66463312e1d30d427bbde6c40e7fd627dcfb82e',
16  'spirv_headers_revision': '51b106461707f46d962554efe1bf56dee28958a3',
17}
18
19deps = {
20  'external/abseil_cpp':
21      Var('github') + '/abseil/abseil-cpp.git@' + Var('abseil_revision'),
22
23  'external/effcee':
24      Var('github') + '/google/effcee.git@' + Var('effcee_revision'),
25
26  'external/googletest':
27      Var('github') + '/google/googletest.git@' + Var('googletest_revision'),
28
29  'external/protobuf':
30      Var('github') + '/protocolbuffers/protobuf.git@' + Var('protobuf_revision'),
31
32  'external/re2':
33      Var('github') + '/google/re2.git@' + Var('re2_revision'),
34
35  'external/spirv-headers':
36      Var('github') +  '/KhronosGroup/SPIRV-Headers.git@' +
37          Var('spirv_headers_revision'),
38}
39
40