mirror of
https://github.com/KhronosGroup/SPIRV-Tools
synced 2024-11-21 19:20:07 +00:00
6c3f632a2c
* Roll external/googletest/ c231e6f5b..eff443c6e (1 commit)c231e6f5b1...eff443c6ef
$ git log c231e6f5b..eff443c6e --date=short --no-merges --format='%ad %ae %s' 2024-03-16 memdo Add colored output support for Alacritty Created with: roll-dep external/googletest * Roll external/re2/ db46d1e11..6598a8ecd (2 commits)db46d1e11e...6598a8ecd5
$ git log db46d1e11..6598a8ecd --date=short --no-merges --format='%ad %ae %s' 2024-03-18 junyer Make compiling a no-op if it's attempted before adding any patterns. 2024-03-17 junyer Raise `re2.error` instead of crashing. 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': 'eff443c6ef5eb6ab598bfaae27f9427fdb4f6af7',
|
|
|
|
# Use protobufs before they gained the dependency on abseil
|
|
'protobuf_revision': 'v21.12',
|
|
|
|
're2_revision': '6598a8ecd57724c8c7d43b2fca8eb9f9969ce57c',
|
|
'spirv_headers_revision': '8b246ff75c6615ba4532fe4fde20f1be090c3764',
|
|
}
|
|
|
|
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'),
|
|
}
|
|
|