mirror of
https://github.com/KhronosGroup/SPIRV-Tools
synced 2024-11-25 13:00:04 +00:00
55bc37f826
8fa9461cc2...12a5852e45
$ git log 8fa9461cc..12a5852e4 --date=short --no-merges --format='%ad %ae %s'
2022-09-15 paul.groke work around GCC 6~11 ADL bug
Created with:
roll-dep external/googletest
Co-authored-by: GitHub Actions[bot] <>
35 lines
967 B
Python
35 lines
967 B
Python
use_relative_paths = True
|
|
|
|
vars = {
|
|
'github': 'https://github.com',
|
|
|
|
'effcee_revision': '66edefd2bb641de8a2f46b476de21f227fc03a28',
|
|
|
|
'googletest_revision': '12a5852e451baabc79c63a86c634912c563d57bc',
|
|
|
|
# Use protobufs before they gained the dependency on abseil
|
|
'protobuf_revision': 'v21.12',
|
|
|
|
're2_revision': '11073deb73b3d01018308863c0bcdfd0d51d3e70',
|
|
'spirv_headers_revision': 'cfbe4feef20c3c0628712c2792624f0221e378ac',
|
|
}
|
|
|
|
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'),
|
|
}
|
|
|