forked from google/amber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDEPS
84 lines (65 loc) · 3.45 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
use_relative_paths = True
vars = {
'cpplint_git': 'https://github.com/cpplint',
'google_git': 'https://github.com/google',
'khronos_git': 'https://github.com/KhronosGroup',
'llvm_git': 'https://github.com/llvm',
'lvandeve_git': 'https://github.com/lvandeve',
'microsoft_git': 'https://github.com/Microsoft',
'nlohmann_git': 'https://github.com/nlohmann',
'swiftshader_git': 'https://swiftshader.googlesource.com',
'martinus_git': 'https://github.com/martinus',
'clspv_llvm_revision': 'b70366c9c430e1eadd59d5a1dfbb9c4d84f83de5',
'clspv_revision': 'f99809bdab1710846633b4ec24f5448263e75da7',
'cpplint_revision': 'fa12a0bbdafa15291276ddd2a2dcd2ac7a2ce4cb',
'dxc_revision': '773b01272719e07ea369bc17f5ddfce248751c7a',
'directx_headers_revision': '980971e835876dc0cde415e8f9bc646e64667bf7',
'glslang_revision': 'e8dd0b6903b34f1879520b444634c75ea2deedf5',
'googletest_revision': '16f637fbf4ffc3f7a01fa4eceb7906634565242f',
'json_revision': '4f8fba14066156b73f1189a2b8bd568bde5284c5',
'lodepng_revision': '5601b8272a6850b7c5d693dd0c0e16da50be8d8d',
'shaderc_revision': 'f59f0d11b80fd622383199c867137ededf89d43b',
'spirv_headers_revision': '36d5e2ddaa54c70d2f29081510c66f4fc98e5e53',
'spirv_tools_revision': '3fb52548bc8a68d349d31e21bd4e80e3d953e87c',
'swiftshader_revision': 'da334852e70510d259bfa8cbaa7c5412966b2f41',
'vulkan_headers_revision': '49af1bfe467dd5a9efc22f7867d95fdde50e2b00',
'vulkan_loader_revision': 'ce2d68b24b66a91ed798d870ca205f899ee6e79d',
'vulkan_utility_libraries_revision': 'b538fb5b08513aa78346cd414ad5e576a2a3e920',
'vulkan_validationlayers_revision': '902f3cf8d51e76be0c0deb4be39c6223abebbae2',
}
deps = {
'third_party/clspv': Var('google_git') + '/clspv.git@' +
Var('clspv_revision'),
'third_party/clspv-llvm': Var('llvm_git') + '/llvm-project.git@' +
Var('clspv_llvm_revision'),
'third_party/cpplint': Var('cpplint_git') + '/cpplint.git@' +
Var('cpplint_revision'),
'third_party/dxc': Var('microsoft_git') + '/DirectXShaderCompiler.git@' +
Var('dxc_revision'),
'third_party/DirectX-Headers': Var('microsoft_git') + '/DirectX-Headers.git@' +
Var('directx_headers_revision'),
'third_party/googletest': Var('google_git') + '/googletest.git@' +
Var('googletest_revision'),
'third_party/json': Var('nlohmann_git') + '/json.git@' +
Var('json_revision'),
'third_party/glslang': Var('khronos_git') + '/glslang.git@' +
Var('glslang_revision'),
'third_party/lodepng': Var('lvandeve_git') + '/lodepng.git@' +
Var('lodepng_revision'),
'third_party/shaderc': Var('google_git') + '/shaderc.git@' +
Var('shaderc_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'),
'third_party/swiftshader': Var('swiftshader_git') + '/SwiftShader.git@' +
Var('swiftshader_revision'),
'third_party/vulkan-headers': Var('khronos_git') + '/Vulkan-Headers.git@' +
Var('vulkan_headers_revision'),
'third_party/vulkan-validationlayers': Var('khronos_git') + '/Vulkan-ValidationLayers.git@' +
Var('vulkan_validationlayers_revision'),
'third_party/vulkan-loader': Var('khronos_git') + '/Vulkan-Loader.git@' +
Var('vulkan_loader_revision'),
'third_party/vulkan-utility-libraries': Var('khronos_git') + '/Vulkan-Utility-Libraries.git@' +
Var('vulkan_utility_libraries_revision'),
}