-
Notifications
You must be signed in to change notification settings - Fork 362
/
DEPS
38 lines (29 loc) · 1.33 KB
/
DEPS
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
use_relative_paths = True
vars = {
'abseil_git': 'https://github.com/abseil',
'google_git': 'https://github.com/google',
'khronos_git': 'https://github.com/KhronosGroup',
'abseil_revision': '1315c900e1ddbb08a23e06eeb9a06450052ccb5e',
'effcee_revision': 'd74d33d93043952a99ae7cd7458baf6bc8df1da0',
'glslang_revision': 'd0e67c58134377f065a509845ca6b7d463f5b487',
'googletest_revision': '1d17ea141d2c11b8917d2c7d029f1c4e2b9769b2',
're2_revision': '4a8cee3dd3c3d81b6fe8b867811e193d5819df07',
'spirv_headers_revision': '22c4d1b1e9d1c7d9aa5086c93e6491f21080019b',
'spirv_tools_revision': 'ce92630396c2fd2d6d04819369116af4fb141a28',
}
deps = {
'third_party/abseil_cpp':
Var('abseil_git') + '/abseil-cpp.git@' + Var('abseil_revision'),
'third_party/effcee': Var('google_git') + '/effcee.git@' +
Var('effcee_revision'),
'third_party/googletest': Var('google_git') + '/googletest.git@' +
Var('googletest_revision'),
'third_party/glslang': Var('khronos_git') + '/glslang.git@' +
Var('glslang_revision'),
'third_party/re2': Var('google_git') + '/re2.git@' +
Var('re2_revision'),
'third_party/spirv-headers': Var('khronos_git') + '/SPIRV-Headers.git@' +
Var('spirv_headers_revision'),
'third_party/spirv-tools': Var('khronos_git') + '/SPIRV-Tools.git@' +
Var('spirv_tools_revision'),
}