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': 'b75ecf1bed2fcd416b66c86cb6fe79122abf132e',
11
12  # Use protobufs before they gained the dependency on abseil
13  'protobuf_revision': 'v21.12',
14
15  're2_revision': 'ab7c5918b418428ed17dbe564e0d8402bd7d743d',
16  'spirv_headers_revision': 'd3c2a6fa95ad463ca8044d7fc45557db381a6a64',
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