mirror of
https://github.com/KhronosGroup/SPIRV-Tools
synced 2024-11-24 20:40:13 +00:00
25b4e42ead
* Roll external/googletest/ 5bcb2d78a..ff233bdd4 (3 commits)5bcb2d78a1...ff233bdd4c
Created with: roll-dep external/googletest * Roll external/abseil_cpp/ 52fad5aa0..bd0c9c58c (11 commits)52fad5aa02...bd0c9c58ca
Created with: roll-dep external/abseil_cpp --------- Co-authored-by: GitHub Actions[bot] <>
41 lines
1.1 KiB
Python
41 lines
1.1 KiB
Python
use_relative_paths = True
|
|
|
|
vars = {
|
|
'github': 'https://github.com',
|
|
|
|
'abseil_revision': '5a01d0f77e37493570e35aedaa95c4bcf1673c7c',
|
|
|
|
'effcee_revision': '2c97e5689ed8d7ab6ae5820f884f03a601ae124b',
|
|
|
|
'googletest_revision': 'ff233bdd4cac0a0bf6e5cd45bda3406814cb2796',
|
|
|
|
# Use protobufs before they gained the dependency on abseil
|
|
'protobuf_revision': 'v21.12',
|
|
|
|
're2_revision': '6dcd83d60f7944926bfd308cc13979fc53dd69ca',
|
|
|
|
'spirv_headers_revision': '1b75a4ae0b4289014b4c369301dc925c366f78a6',
|
|
}
|
|
|
|
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'),
|
|
}
|
|
|