mirror of
https://github.com/KhronosGroup/SPIRV-Tools
synced 2024-11-25 13:00:04 +00:00
97a55196d2
b5fd99bbd5...7ee260c549
$ git log b5fd99bbd..7ee260c54 --date=short --no-merges --format='%ad %ae %s'
2023-04-03 absl-team Rolled back due to breaking existing tests.
Created with:
roll-dep external/googletest
Co-authored-by: GitHub Actions[bot] <>
35 lines
970 B
Python
35 lines
970 B
Python
use_relative_paths = True
|
|
|
|
vars = {
|
|
'github': 'https://github.com',
|
|
|
|
'effcee_revision': '66edefd2bb641de8a2f46b476de21f227fc03a28',
|
|
|
|
'googletest_revision': '7ee260c54921571b18b15049304426fe151c1265',
|
|
|
|
# Use protobufs before they gained the dependency on abseil
|
|
'protobuf_revision': 'v3.13.0.1',
|
|
|
|
're2_revision': '11073deb73b3d01018308863c0bcdfd0d51d3e70',
|
|
'spirv_headers_revision': '29ba2493125effc581532518add689613cebfec7',
|
|
}
|
|
|
|
deps = {
|
|
'external/effcee':
|
|
Var('github') + '/google/effcee.git@' + Var('effcee_revision'),
|
|
|
|
'external/googletest':
|
|
Var('github') + '/google/googletest.git@' + Var('googletest_revision'),
|
|
|
|
'external/protobuf':
|
|
Var('github') + '/protocolbuffers/protobuf.git@' + Var('protobuf_revision'),
|
|
|
|
'external/re2':
|
|
Var('github') + '/google/re2.git@' + Var('re2_revision'),
|
|
|
|
'external/spirv-headers':
|
|
Var('github') + '/KhronosGroup/SPIRV-Headers.git@' +
|
|
Var('spirv_headers_revision'),
|
|
}
|
|
|