forked from KhronosGroup/SPIRV-Tools
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDEPS
More file actions
45 lines (29 loc) · 1.27 KB
/
DEPS
File metadata and controls
45 lines (29 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
use_relative_paths = True
vars = {
'github': 'https://github.com',
'abseil_revision': 'ed2114e8ff2ed30c9d09ff304385410d960ec570',
'effcee_revision': 'ae38e040cbb7e83efa8bfbb4967e5b8c8c89b55a',
'googletest_revision': 'd72f9c8aea6817cdf1ca0ac10887f328de7f3da2',
# Use protobufs before they gained the dependency on abseil
'protobuf_revision': 'v21.12',
're2_revision': '972a15cedd008d846f1a39b2e88ce48d7f166cbd',
'spirv_headers_revision': '6dd7ba990830f7c15ac1345ff3b43ef6ffdad216',
'mimalloc_revision': '75d69f4ab736ad9f56cdd76c7eb883f60ac48869',
}
deps = {
'external/abseil_cpp':
Var('github') + '/abseil/abseil-cpp.git@' + Var('abseil_revision'),
'external/effcee':
Var('github') + '/google/effcee.git@' + Var('effcee_revision'),
'external/googletest':
Var('github') + '/google/googletest.git@' + Var('googletest_revision'),
'external/protobuf':
Var('github') + '/protocolbuffers/protobuf.git@' + Var('protobuf_revision'),
'external/re2':
Var('github') + '/google/re2.git@' + Var('re2_revision'),
'external/spirv-headers':
Var('github') + '/KhronosGroup/SPIRV-Headers.git@' +
Var('spirv_headers_revision'),
'external/mimalloc':
Var('github') + '/microsoft/mimalloc.git@' + Var('mimalloc_revision'),
}