| use_relative_paths = True |
| |
| vars = { |
| 'github': 'https://github.com', |
| |
| 'effcee_revision': '66edefd2bb641de8a2f46b476de21f227fc03a28', |
| |
| 'googletest_revision': 'bc860af08783b8113005ca7697da5f5d49a8056f', |
| |
| # Use protobufs before they gained the dependency on abseil |
| 'protobuf_revision': 'v21.12', |
| |
| 're2_revision': 'c9cba76063cf4235c1a15dd14a24a4ef8d623761', |
| 'spirv_headers_revision': '268a061764ee69f09a477a695bf6a11ffe311b8d', |
| } |
| |
| deps = { |
| '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'), |
| } |
| |