mirror of
https://github.com/KhronosGroup/SPIRV-Tools
synced 2024-11-22 03:30:06 +00:00
7210d247cd
* Roll external/googletest/ 518387203..b10fad38c (2 commits)518387203b...b10fad38c4
$ git log 518387203..b10fad38c --date=short --no-merges --format='%ad %ae %s' 2023-10-26 absl-team Export gmock-spec-builders. 2023-10-25 theorbuehler Add missing include for raise(3) Created with: roll-dep external/googletest * Roll external/re2/ a0b3bc60c..24d460a9d (6 commits)a0b3bc60c3...24d460a9db
$ git log a0b3bc60c..24d460a9d --date=short --no-merges --format='%ad %ae %s' 2023-11-01 vovkos Don't check `kind_ == Prog::kManyMatch` in `DFA::InlinedSearchLoop()`. 2023-11-01 junyer Replace a couple of `assert(3)` calls. 2023-10-31 junyer Prepare to tag release `2023-11-01`. 2023-10-27 junyer Bump some versions in `MODULE.bazel`. 2023-10-27 junyer Simplify `ci-cmake.yml` via `matrix`. 2023-10-27 junyer GitHub Actions now provides GCC 13. Created with: roll-dep external/re2 --------- Co-authored-by: GitHub Actions[bot] <>
40 lines
1.1 KiB
Python
40 lines
1.1 KiB
Python
use_relative_paths = True
|
|
|
|
vars = {
|
|
'github': 'https://github.com',
|
|
|
|
'abseil_revision': '79ca5d7aad63973c83a4962a66ab07cd623131ea',
|
|
|
|
'effcee_revision': '19b4aa87af25cb4ee779a071409732f34bfc305c',
|
|
|
|
'googletest_revision': 'b10fad38c4026a29ea6561ab15fc4818170d1c10',
|
|
|
|
# Use protobufs before they gained the dependency on abseil
|
|
'protobuf_revision': 'v21.12',
|
|
|
|
're2_revision': '24d460a9db6048b9d3e05cfdea13ec9d592545ad',
|
|
'spirv_headers_revision': '88bc5e321c2839707df8b1ab534e243e00744177',
|
|
}
|
|
|
|
deps = {
|
|
'external/abseil_cpp':
|
|
Var('github') + '/abseil/abseil-cpp.git@' + Var('abseil_revision'),
|
|
|
|
'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'),
|
|
}
|
|
|