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': '1f1c71aeacc1c4eab385c074714508b6e7121f73', 14 'clspv_revision': 'a0d39a143135ce0a9610298b123ad1f8fb798132', 15 'cppdap_revision': '5f3169421ebf151d5583252618a0631e23a89066', 16 'cpplint_revision': '26470f9ccb354ff2f6d098f831271a1833701b28', 17 'dxc_revision': '5fba0c36b35685bf54a08676f9cb9335bc846b26', 18 'glslang_revision': 'd1608ab1ef17f1488bdcbfe11f2c3c96ac482fce', 19 'googletest_revision': '16f637fbf4ffc3f7a01fa4eceb7906634565242f', 20 'json_revision': 'fec56a1a16c6e1c1b1f4e116a20e79398282626c', 21 'lodepng_revision': '8c6a9e30576f07bf470ad6f09458a2dcd7a6a84a', 22 'shaderc_revision': 'f6d6dddfabfec1041c0dfb8e7ff3608a5f82227c', 23 'spirv_headers_revision': '1380cbbec10756b492e9397d03c4250887e15090', 24 'spirv_tools_revision': 'd997c83b103ed1f3af09ed65e1cbf89fbc6d9451', 25 'swiftshader_revision': '0fa19bd6c285e8ad3459a3f58ca903ceb2d7ab00', 26 'vulkan_headers_revision': 'd594f70127b4198286b3472a48bee56e341259cd', 27 'vulkan_loader_revision': '830a0724aa281d7cad98eda59b850871f024bb41', 28 'vulkan_validationlayers_revision': 'b9168891cb55c00e2054220082775f6e0c114df0', 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