2018-06-06 01:36:50 +00:00
|
|
|
use_relative_paths = True
|
|
|
|
|
|
|
|
vars = {
|
|
|
|
'github': 'https://github.com',
|
|
|
|
|
2023-03-03 14:30:13 +00:00
|
|
|
'effcee_revision': '66edefd2bb641de8a2f46b476de21f227fc03a28',
|
2022-12-21 15:49:52 +00:00
|
|
|
|
2023-05-03 14:29:01 +00:00
|
|
|
'googletest_revision': 'a3580180d16923d6d5f488e20b3814608a892f17',
|
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-05-02 13:19:52 +00:00
|
|
|
're2_revision': 'c9cba76063cf4235c1a15dd14a24a4ef8d623761',
|
2023-04-28 13:40:46 +00:00
|
|
|
'spirv_headers_revision': '7f1d2f4158704337aff1f739c8e494afc5716e7e',
|
2018-06-06 01:36:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
deps = {
|
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
|
|
|
}
|
|
|
|
|