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-03-29 17:07:20 +00:00
|
|
|
'googletest_revision': 'ca0d46e95dd13e331bb9419b0b0e3af758e8644c',
|
2022-12-21 15:49:52 +00:00
|
|
|
|
|
|
|
# Use protobufs before they gained the dependency on abseil
|
|
|
|
'protobuf_revision': 'v3.13.0.1',
|
|
|
|
|
2023-03-20 13:57:12 +00:00
|
|
|
're2_revision': '11073deb73b3d01018308863c0bcdfd0d51d3e70',
|
2023-03-24 14:03:09 +00:00
|
|
|
'spirv_headers_revision': '90547c54e24e01aae41a68124e7a304d0ec11dd0',
|
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
|
|
|
}
|
|
|
|
|