Chris Forbes | cc5697f | 2019-01-30 11:54:08 -0800 | [diff] [blame] | 1 | use_relative_paths = True |
| 2 | |
| 3 | vars = { |
Chris Forbes | cc5697f | 2019-01-30 11:54:08 -0800 | [diff] [blame] | 4 | 'github': 'https://github.com', |
| 5 | |
Nicolas Capens | 6cacf18 | 2021-11-30 11:15:46 -0500 | [diff] [blame] | 6 | 'effcee_revision': 'ddf5e2bb92957dc8a12c5392f8495333d6844133', |
Nicolas Capens | 0405b63 | 2022-06-01 14:33:22 -0400 | [diff] [blame] | 7 | 'googletest_revision': '548b13dc3c02b93f60eeff9a0cc6e11c1ea722ca', |
| 8 | 're2_revision': '5723bb8950318135ed9cf4fc76bed988a087f536', |
Nicolas Capens | 00a1bcc | 2022-07-29 16:49:40 -0400 | [diff] [blame] | 9 | 'spirv_headers_revision': 'b2a156e1c0434bc8c99aaebba1c7be98be7ac580', |
Chris Forbes | cc5697f | 2019-01-30 11:54:08 -0800 | [diff] [blame] | 10 | } |
| 11 | |
| 12 | deps = { |
Ben Clayton | b73b760 | 2019-07-29 13:56:13 +0100 | [diff] [blame] | 13 | 'external/effcee': |
| 14 | Var('github') + '/google/effcee.git@' + Var('effcee_revision'), |
Chris Forbes | cc5697f | 2019-01-30 11:54:08 -0800 | [diff] [blame] | 15 | |
| 16 | 'external/googletest': |
| 17 | Var('github') + '/google/googletest.git@' + Var('googletest_revision'), |
| 18 | |
Chris Forbes | cc5697f | 2019-01-30 11:54:08 -0800 | [diff] [blame] | 19 | 'external/re2': |
| 20 | Var('github') + '/google/re2.git@' + Var('re2_revision'), |
| 21 | |
Ben Clayton | b73b760 | 2019-07-29 13:56:13 +0100 | [diff] [blame] | 22 | 'external/spirv-headers': |
| 23 | Var('github') + '/KhronosGroup/SPIRV-Headers.git@' + |
| 24 | Var('spirv_headers_revision'), |
Chris Forbes | cc5697f | 2019-01-30 11:54:08 -0800 | [diff] [blame] | 25 | } |
| 26 | |