1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
use_relative_paths = True
vars = {
'github': 'https://github.com',
'abseil_revision': 'a5e3599b234ff11cb6e7e52a77fd4811a24a851a',
'effcee_revision': '514b52ec61609744d7e587d93a7ef9b60407ab45',
'googletest_revision': '1b96fa13f549387b7549cc89e1a785cf143a1a50',
# Use protobufs before they gained the dependency on abseil
'protobuf_revision': 'v21.12',
're2_revision': 'e7aec5985072c1dbe735add802653ef4b36c231a',
'spirv_headers_revision': 'b824a462d4256d720bebb40e78b9eb8f78bbb305',
'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'),
}
|