| use_relative_paths = True |
| |
| vars = { |
| 'github': 'https://github.com', |
| |
| 'abseil_revision': 'd4e6b8cdb9f4a7855a2bf223d98f9998f5065672', |
| |
| 'effcee_revision': '8ce15c424e61a94ee27b5be0ec0ed036b158e6e3', |
| |
| 'googletest_revision': 'c67de117379f4d1c889c7581a0a76aa0979c2083', |
| |
| # Use protobufs before they gained the dependency on abseil |
| 'protobuf_revision': 'v21.12', |
| |
| 're2_revision': '8ea5841693c6c0b837c6ed2189217e8f8d6fee9c', |
| |
| 'spirv_headers_revision': '04b76709bf40a7ce8df3382060ef3620f19de566', |
| |
| 'mimalloc_revision': '09a27098aa6e9286518bd9c74e6ffa7199c3f04e', |
| } |
| |
| 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'), |
| } |
| |