2018-06-06 01:36:50 +00:00
|
|
|
use_relative_paths = True
|
|
|
|
|
|
|
|
vars = {
|
|
|
|
'github': 'https://github.com',
|
|
|
|
|
2023-01-16 20:21:17 +00:00
|
|
|
'effcee_revision': 'c7b4db79f340f7a9981e8a484f6d5785e24242d1',
|
2022-12-21 15:49:52 +00:00
|
|
|
|
2022-12-22 20:22:04 +00: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 15:49:52 +00:00
|
|
|
|
|
|
|
# Use protobufs before they gained the dependency on abseil
|
|
|
|
'protobuf_revision': 'v3.13.0.1',
|
|
|
|
|
2023-01-24 15:26:28 +00:00
|
|
|
're2_revision': 'ba541565b4fbe1684d4b98695ec0b6d6c13ba98b',
|
2023-01-19 01:41:29 +00:00
|
|
|
'spirv_headers_revision': 'aa331ab0ffcb3a67021caa1a0c1c9017712f2f31',
|
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
|
|
|
}
|
|
|
|
|