2018-06-05 21:36:50 -04:00
|
|
|
use_relative_paths = True
|
|
|
|
|
|
|
|
vars = {
|
|
|
|
'github': 'https://github.com',
|
|
|
|
|
2024-09-05 17:46:13 +00:00
|
|
|
'abseil_revision': 'f7f316824dfe2c0c0d5e9679970004fd6ac93055',
|
2023-05-25 09:00:30 -04:00
|
|
|
|
2024-07-18 02:54:47 +00:00
|
|
|
'effcee_revision': '2c97e5689ed8d7ab6ae5820f884f03a601ae124b',
|
2022-12-21 10:49:52 -05:00
|
|
|
|
2024-09-03 16:56:01 +00:00
|
|
|
'googletest_revision': '0953a17a4281fc26831da647ad3fcd5e21e6473b',
|
2022-12-21 10:49:52 -05:00
|
|
|
|
|
|
|
# Use protobufs before they gained the dependency on abseil
|
2023-04-12 13:37:07 -04:00
|
|
|
'protobuf_revision': 'v21.12',
|
2022-12-21 10:49:52 -05:00
|
|
|
|
2024-07-02 13:14:18 +00:00
|
|
|
're2_revision': '6dcd83d60f7944926bfd308cc13979fc53dd69ca',
|
2024-05-23 16:18:51 -04:00
|
|
|
|
2024-09-03 16:56:01 +00:00
|
|
|
'spirv_headers_revision': 'efb6b4099ddb8fa60f62956dee592c4b94ec6a49',
|
2018-06-05 21:36:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
deps = {
|
2023-05-25 09:00:30 -04:00
|
|
|
'external/abseil_cpp':
|
|
|
|
Var('github') + '/abseil/abseil-cpp.git@' + Var('abseil_revision'),
|
|
|
|
|
2019-06-20 14:57:28 -04:00
|
|
|
'external/effcee':
|
|
|
|
Var('github') + '/google/effcee.git@' + Var('effcee_revision'),
|
2018-06-05 21:36:50 -04:00
|
|
|
|
|
|
|
'external/googletest':
|
|
|
|
Var('github') + '/google/googletest.git@' + Var('googletest_revision'),
|
|
|
|
|
2022-12-21 10:49:52 -05:00
|
|
|
'external/protobuf':
|
|
|
|
Var('github') + '/protocolbuffers/protobuf.git@' + Var('protobuf_revision'),
|
|
|
|
|
2018-06-05 21:36:50 -04:00
|
|
|
'external/re2':
|
|
|
|
Var('github') + '/google/re2.git@' + Var('re2_revision'),
|
|
|
|
|
2019-06-20 14:57:28 -04:00
|
|
|
'external/spirv-headers':
|
|
|
|
Var('github') + '/KhronosGroup/SPIRV-Headers.git@' +
|
|
|
|
Var('spirv_headers_revision'),
|
2018-06-05 21:36:50 -04:00
|
|
|
}
|
|
|
|
|