1use_relative_paths = True
2
3vars = {
4  'cpplint_git':  'https://github.com/cpplint',
5  'google_git':  'https://github.com/google',
6  'khronos_git': 'https://github.com/KhronosGroup',
7  'llvm_git': 'https://github.com/llvm',
8  'lvandeve_git':  'https://github.com/lvandeve',
9  'microsoft_git': 'https://github.com/Microsoft',
10  'nlohmann_git': 'https://github.com/nlohmann',
11  'swiftshader_git': 'https://swiftshader.googlesource.com',
12  'martinus_git': 'https://github.com/martinus',
13
14  'clspv_llvm_revision': 'b70366c9c430e1eadd59d5a1dfbb9c4d84f83de5',
15  'clspv_revision': 'f99809bdab1710846633b4ec24f5448263e75da7',
16  'cpplint_revision': 'fa12a0bbdafa15291276ddd2a2dcd2ac7a2ce4cb',
17  'dxc_revision': 'c45db48d565a9edc14b025e43b90e62264d06eea',
18  'glslang_revision': '81cc10a498b25a90147cccd6e8939493c1e9e20e',
19  'googletest_revision': '16f637fbf4ffc3f7a01fa4eceb7906634565242f',
20  'json_revision': '4f8fba14066156b73f1189a2b8bd568bde5284c5',
21  'lodepng_revision': '5601b8272a6850b7c5d693dd0c0e16da50be8d8d',
22  'shaderc_revision': 'e72186b66bb90ed06aaf15cbdc9a053581a0616b',
23  'spirv_headers_revision': 'd13b52222c39a7e9a401b44646f0ca3a640fbd47',
24  'spirv_tools_revision': 'd87f61605b3647fbceae9aaa922fce0031afdc63',
25  'swiftshader_revision': 'bca23447ad4667a7b79973569ab5d8d905d211ac',
26  'vulkan_headers_revision': '1dace16d8044758d32736eb59802d171970e9448',
27  'vulkan_loader_revision': '8aad559a09388ceb5b968af64a2b965d3886e5a0',
28  'vulkan_validationlayers_revision': 'a6c1ddca49331d8addde052554487180ee8aec13',
29  'robin_hood_hashing_revision': '24b3f50f9532153edc23b29ae277dcccfd75a462',
30}
31
32deps = {
33  'third_party/clspv': Var('google_git') + '/clspv.git@' +
34      Var('clspv_revision'),
35
36  'third_party/clspv-llvm': Var('llvm_git') + '/llvm-project.git@' +
37      Var('clspv_llvm_revision'),
38
39  'third_party/cpplint': Var('cpplint_git') + '/cpplint.git@' +
40      Var('cpplint_revision'),
41
42  'third_party/dxc': Var('microsoft_git') + '/DirectXShaderCompiler.git@' +
43      Var('dxc_revision'),
44
45  'third_party/googletest': Var('google_git') + '/googletest.git@' +
46      Var('googletest_revision'),
47
48  'third_party/json': Var('nlohmann_git') + '/json.git@' +
49      Var('json_revision'),
50
51  'third_party/glslang': Var('khronos_git') + '/glslang.git@' +
52      Var('glslang_revision'),
53
54  'third_party/lodepng': Var('lvandeve_git') + '/lodepng.git@' +
55      Var('lodepng_revision'),
56
57  'third_party/shaderc': Var('google_git') + '/shaderc.git@' +
58      Var('shaderc_revision'),
59
60  'third_party/spirv-headers': Var('khronos_git') + '/SPIRV-Headers.git@' +
61      Var('spirv_headers_revision'),
62
63  'third_party/spirv-tools': Var('khronos_git') + '/SPIRV-Tools.git@' +
64      Var('spirv_tools_revision'),
65
66  'third_party/swiftshader': Var('swiftshader_git') + '/SwiftShader.git@' +
67      Var('swiftshader_revision'),
68
69  'third_party/vulkan-headers': Var('khronos_git') + '/Vulkan-Headers.git@' +
70      Var('vulkan_headers_revision'),
71
72  'third_party/vulkan-validationlayers': Var('khronos_git') + '/Vulkan-ValidationLayers.git@' +
73      Var('vulkan_validationlayers_revision'),
74
75  'third_party/vulkan-loader': Var('khronos_git') + '/Vulkan-Loader.git@' +
76      Var('vulkan_loader_revision'),
77
78  'third_party/robin-hood-hashing': Var('martinus_git') + '/robin-hood-hashing.git@' +
79      Var('robin_hood_hashing_revision'),
80}
81