1use_relative_paths = True 2 3vars = { 4 'github': 'https://github.com', 5 6 'effcee_revision': '2ec8f8738118cc483b67c04a759fee53496c5659', 7 'googletest_revision': 'b7d472f1225c5a64943821d8483fecb469d3f382', 8 're2_revision': 'f8e389f3acdc2517562924239e2a188037393683', 9 'spirv_headers_revision': 'ddf3230c14c71e81fc0eae9b781cc4bcc2d1f0f5', 10} 11 12deps = { 13 'external/effcee': 14 Var('github') + '/google/effcee.git@' + Var('effcee_revision'), 15 16 'external/googletest': 17 Var('github') + '/google/googletest.git@' + Var('googletest_revision'), 18 19 'external/re2': 20 Var('github') + '/google/re2.git@' + Var('re2_revision'), 21 22 'external/spirv-headers': 23 Var('github') + '/KhronosGroup/SPIRV-Headers.git@' + 24 Var('spirv_headers_revision'), 25} 26 27