| use_relative_paths = True |
| |
| vars = { |
| 'github': 'https://github.com', |
| |
| 'abseil_revision': '41a1f434d40bc6089acaf026b00c5f8f917e8706', |
| |
| 'effcee_revision': '8ce15c424e61a94ee27b5be0ec0ed036b158e6e3', |
| |
| 'googletest_revision': '571930618fa96eabcd05b573285edbee9fc13bae', |
| |
| # Use protobufs before they gained the dependency on abseil |
| 'protobuf_revision': 'v21.12', |
| |
| 're2_revision': 'c84a140c93352cdabbfb547c531be34515b12228', |
| |
| 'spirv_headers_revision': 'c9aad99f9276817f18f72a4696239237c83cb775', |
| } |
| |
| 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'), |
| } |
| |