mirror of
https://github.com/KhronosGroup/SPIRV-Tools
synced 2024-11-25 21:10:04 +00:00
fba26fd606
* Roll external/googletest/ 50e07d1c9..038e392eb (1 commit)50e07d1c92...038e392ebd
$ git log 50e07d1c9..038e392eb --date=short --no-merges --format='%ad %ae %s' 2023-03-10 lawrencews [gtest] Drop custom-rolled heterogeneous comparator functors in favor of C++ standard ones Created with: roll-dep external/googletest * Roll external/re2/ f0402c039..b059ae85c (1 commit)f0402c0397...b059ae85c8
$ git log f0402c039..b059ae85c --date=short --no-merges --format='%ad %ae %s' 2023-03-10 junyer Move inst_ out of the blob of memory for a State. Created with: roll-dep external/re2 --------- 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': '038e392ebd8081c756e180475cc361f711fb438d',
|
|
|
|
# Use protobufs before they gained the dependency on abseil
|
|
'protobuf_revision': 'v3.13.0.1',
|
|
|
|
're2_revision': 'b059ae85c83ca6b1f29dba20e92e4acb85cb5b29',
|
|
'spirv_headers_revision': '1feaf4414eb2b353764d01d88f8aa4bcc67b60db',
|
|
}
|
|
|
|
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'),
|
|
}
|
|
|