2018-06-06 01:36:50 +00:00
|
|
|
use_relative_paths = True
|
|
|
|
|
|
|
|
vars = {
|
|
|
|
'github': 'https://github.com',
|
|
|
|
|
2023-05-25 13:00:30 +00:00
|
|
|
'abseil_revision': '79ca5d7aad63973c83a4962a66ab07cd623131ea',
|
|
|
|
|
2023-06-21 16:58:32 +00:00
|
|
|
'effcee_revision': '19b4aa87af25cb4ee779a071409732f34bfc305c',
|
2022-12-21 15:49:52 +00:00
|
|
|
|
2023-08-23 22:29:43 +00:00
|
|
|
'googletest_revision': 'cb5cd96bcafc15eaaf73517357b596e9ca1e71b4',
|
2022-12-21 15:49:52 +00:00
|
|
|
|
|
|
|
# Use protobufs before they gained the dependency on abseil
|
2023-04-12 17:37:07 +00:00
|
|
|
'protobuf_revision': 'v21.12',
|
2022-12-21 15:49:52 +00:00
|
|
|
|
2023-08-23 22:29:43 +00:00
|
|
|
're2_revision': '73031bbc08cb3e3200497be4a50e37d6f3acc1d0',
|
2023-08-17 04:50:45 +00:00
|
|
|
'spirv_headers_revision': 'b8b9eb8640c8c0107ba580fbcb10f969022ca32c',
|
2018-06-06 01:36:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
deps = {
|
2023-05-25 13:00:30 +00:00
|
|
|
'external/abseil_cpp':
|
|
|
|
Var('github') + '/abseil/abseil-cpp.git@' + Var('abseil_revision'),
|
|
|
|
|
2019-06-20 18:57:28 +00:00
|
|
|
'external/effcee':
|
|
|
|
Var('github') + '/google/effcee.git@' + Var('effcee_revision'),
|
2018-06-06 01:36:50 +00:00
|
|
|
|
|
|
|
'external/googletest':
|
|
|
|
Var('github') + '/google/googletest.git@' + Var('googletest_revision'),
|
|
|
|
|
2022-12-21 15:49:52 +00:00
|
|
|
'external/protobuf':
|
|
|
|
Var('github') + '/protocolbuffers/protobuf.git@' + Var('protobuf_revision'),
|
|
|
|
|
2018-06-06 01:36:50 +00:00
|
|
|
'external/re2':
|
|
|
|
Var('github') + '/google/re2.git@' + Var('re2_revision'),
|
|
|
|
|
2019-06-20 18:57:28 +00:00
|
|
|
'external/spirv-headers':
|
|
|
|
Var('github') + '/KhronosGroup/SPIRV-Headers.git@' +
|
|
|
|
Var('spirv_headers_revision'),
|
2018-06-06 01:36:50 +00:00
|
|
|
}
|
|
|
|
|