46 lines
1.3 KiB
Python
46 lines
1.3 KiB
Python
use_relative_paths = True
|
|
|
|
vars = {
|
|
'github': 'https://github.com',
|
|
|
|
'abseil_revision': '6cd1763d9fea309e83fe8bc20f997208d57cd476',
|
|
|
|
'effcee_revision': '8ce15c424e61a94ee27b5be0ec0ed036b158e6e3',
|
|
|
|
'googletest_revision': '3983f67e32fb3e9294487b9d4f9586efa6e5d088',
|
|
|
|
# Use protobufs before they gained the dependency on abseil
|
|
'protobuf_revision': 'v21.12',
|
|
|
|
're2_revision': '8ea5841693c6c0b837c6ed2189217e8f8d6fee9c',
|
|
|
|
'spirv_headers_revision': 'c8ad050fcb29e42a2f57d9f59e97488f465c436d',
|
|
|
|
'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'),
|
|
}
|
|
|