| use_relative_paths = True |
| |
| vars = { |
| 'github': 'https://github.com', |
| |
| 'abseil_revision': '346ac9dbcfd853ecab264c1e7d08c14903a07a5a', |
| |
| 'effcee_revision': '514b52ec61609744d7e587d93a7ef9b60407ab45', |
| |
| 'googletest_revision': '8dbd60f7d5f88aca74ef76f4dd5258d35c324199', |
| |
| # Use protobufs before they gained the dependency on abseil |
| 'protobuf_revision': 'v21.12', |
| |
| 're2_revision': '61c4644171ee6b480540bf9e569cba06d9090b4b', |
| |
| 'spirv_headers_revision': '9268f3057354a2cb65991ba5f38b16d81e803692', |
| |
| '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'), |
| } |
| |