| use_relative_paths = True |
| |
| vars = { |
| 'github': 'https://github.com', |
| |
| 'abseil_revision': 'db1bdc86effd20c9ac9c9939326c0d280c9ff733', |
| |
| 'effcee_revision': '910ed15722d5d05c9d71ecf36c1a22243cb79b02', |
| |
| 'googletest_revision': '8240fa7d62f73e01c7af27d61ed965d6d66698fa', |
| |
| # Use a recent protobuf, which can depend on abseil |
| 'protobuf_revision': '35cd01f9fe9afbeea38cc7b979a3b6bfcde82c03', |
| |
| 're2_revision': '972a15cedd008d846f1a39b2e88ce48d7f166cbd', |
| |
| 'spirv_headers_revision': '29981f65241605e08b0ede4cfeb999fe3b723c6a', |
| |
| 'mimalloc_revision': 'fef6b0dd70f9d7fa0750b0d0b9fbb471203b94cd', |
| } |
| |
| deps = { |
| 'external/abseil_cpp': |
| Var('github') + '/abseil/abseil-cpp.git@' + Var('abseil_revision'), |
| |
| 'external/effcee': |
| Var('github') + '/google/effcee.git@' + Var('effcee_revision'), |
| |
| 'external/googletest': |
| Var('github') + '/google/googletest.git@' + Var('googletest_revision'), |
| |
| 'external/protobuf': |
| Var('github') + '/protocolbuffers/protobuf.git@' + Var('protobuf_revision'), |
| |
| 'external/re2': |
| Var('github') + '/google/re2.git@' + Var('re2_revision'), |
| |
| 'external/spirv-headers': |
| Var('github') + '/KhronosGroup/SPIRV-Headers.git@' + |
| Var('spirv_headers_revision'), |
| |
| 'external/mimalloc': |
| Var('github') + '/microsoft/mimalloc.git@' + Var('mimalloc_revision'), |
| } |
| |