2018-06-06 04:36:50 +03:00
|
|
|
use_relative_paths = True
|
|
|
|
|
|
|
|
vars = {
|
|
|
|
'github': 'https://github.com',
|
|
|
|
|
2022-10-12 16:29:39 +03:00
|
|
|
'effcee_revision': '35912e1b7778ec2ddcff7e7188177761539e59e0',
|
2022-12-21 18:49:52 +03:00
|
|
|
|
2022-12-22 23:22:04 +03:00
|
|
|
# Pin to the last version of googletest that supports C++11.
|
|
|
|
# Anything later requires C++14
|
|
|
|
'googletest_revision': 'v1.12.0',
|
2022-12-21 18:49:52 +03:00
|
|
|
|
|
|
|
# Use protobufs before they gained the dependency on abseil
|
|
|
|
'protobuf_revision': 'v3.13.0.1',
|
|
|
|
|
2022-10-12 16:29:43 +03:00
|
|
|
're2_revision': 'd2836d1b1c34c4e330a85a1006201db474bf2c8a',
|
2022-12-16 19:17:39 +03:00
|
|
|
'spirv_headers_revision': '34d04647d384e0aed037e7a2662a655fc39841bb',
|
2018-06-06 04:36:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
deps = {
|
2019-06-20 21:57:28 +03:00
|
|
|
'external/effcee':
|
|
|
|
Var('github') + '/google/effcee.git@' + Var('effcee_revision'),
|
2018-06-06 04:36:50 +03:00
|
|
|
|
|
|
|
'external/googletest':
|
|
|
|
Var('github') + '/google/googletest.git@' + Var('googletest_revision'),
|
|
|
|
|
2022-12-21 18:49:52 +03:00
|
|
|
'external/protobuf':
|
|
|
|
Var('github') + '/protocolbuffers/protobuf.git@' + Var('protobuf_revision'),
|
|
|
|
|
2018-06-06 04:36:50 +03:00
|
|
|
'external/re2':
|
|
|
|
Var('github') + '/google/re2.git@' + Var('re2_revision'),
|
|
|
|
|
2019-06-20 21:57:28 +03:00
|
|
|
'external/spirv-headers':
|
|
|
|
Var('github') + '/KhronosGroup/SPIRV-Headers.git@' +
|
|
|
|
Var('spirv_headers_revision'),
|
2018-06-06 04:36:50 +03:00
|
|
|
}
|
|
|
|
|