1use_relative_paths = True 2 3vars = { 4 'google_git': 'https://github.com/google', 5 'khronos_git': 'https://github.com/KhronosGroup', 6 'llvm_git': 'https://github.com/llvm', 7 'lvandeve_git': 'https://github.com/lvandeve', 8 'microsoft_git': 'https://github.com/Microsoft', 9 'nlohmann_git': 'https://github.com/nlohmann', 10 'swiftshader_git': 'https://swiftshader.googlesource.com', 11 'martinus_git': 'https://github.com/martinus', 12 13 'clspv_llvm_revision': 'b70366c9c430e1eadd59d5a1dfbb9c4d84f83de5', 14 'clspv_revision': 'f99809bdab1710846633b4ec24f5448263e75da7', 15 'cppdap_revision': '88e89520148b2f95e17ca9348587a28215ffc921', 16 'cpplint_revision': '26470f9ccb354ff2f6d098f831271a1833701b28', 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': 'b42ba6d92faf6b4938e6f22ddd186dbdacc98d78', 24 'spirv_tools_revision': 'a73e724359a274d7cf4f4248eba5be1e7764fbfd', 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/cppdap': Var('google_git') + '/cppdap.git@' + 40 Var('cppdap_revision'), 41 42 'third_party/cpplint': Var('google_git') + '/styleguide.git@' + 43 Var('cpplint_revision'), 44 45 'third_party/dxc': Var('microsoft_git') + '/DirectXShaderCompiler.git@' + 46 Var('dxc_revision'), 47 48 'third_party/googletest': Var('google_git') + '/googletest.git@' + 49 Var('googletest_revision'), 50 51 'third_party/json': Var('nlohmann_git') + '/json.git@' + 52 Var('json_revision'), 53 54 'third_party/glslang': Var('khronos_git') + '/glslang.git@' + 55 Var('glslang_revision'), 56 57 'third_party/lodepng': Var('lvandeve_git') + '/lodepng.git@' + 58 Var('lodepng_revision'), 59 60 'third_party/shaderc': Var('google_git') + '/shaderc.git@' + 61 Var('shaderc_revision'), 62 63 'third_party/spirv-headers': Var('khronos_git') + '/SPIRV-Headers.git@' + 64 Var('spirv_headers_revision'), 65 66 'third_party/spirv-tools': Var('khronos_git') + '/SPIRV-Tools.git@' + 67 Var('spirv_tools_revision'), 68 69 'third_party/swiftshader': Var('swiftshader_git') + '/SwiftShader.git@' + 70 Var('swiftshader_revision'), 71 72 'third_party/vulkan-headers': Var('khronos_git') + '/Vulkan-Headers.git@' + 73 Var('vulkan_headers_revision'), 74 75 'third_party/vulkan-validationlayers': Var('khronos_git') + '/Vulkan-ValidationLayers.git@' + 76 Var('vulkan_validationlayers_revision'), 77 78 'third_party/vulkan-loader': Var('khronos_git') + '/Vulkan-Loader.git@' + 79 Var('vulkan_loader_revision'), 80 81 'third_party/robin-hood-hashing': Var('martinus_git') + '/robin-hood-hashing.git@' + 82 Var('robin_hood_hashing_revision'), 83} 84