xref: /aosp_15_r20/external/swiftshader/third_party/SPIRV-Tools/DEPS (revision 03ce13f70fcc45d86ee91b7ee4cab1936a95046e)
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': '5a37b517ad4ab6738556f0284c256cae1466c5b4',
11
12  # Use protobufs before they gained the dependency on abseil
13  'protobuf_revision': 'v21.12',
14
15  're2_revision': '917047f3606d3ba9e2de0d383c3cd80c94ed732c',
16  'spirv_headers_revision': '4f7b471f1a66b6d06462cd4ba57628cc0cd087d7',
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