mirror of
https://github.com/KhronosGroup/SPIRV-Tools
synced 2024-11-22 03:30:06 +00:00
e1782d6675
* Roll external/googletest/ ff233bdd4..0953a17a4 (1 commit)ff233bdd4c...0953a17a42
Created with: roll-dep external/googletest * Roll external/abseil_cpp/ fd7713cb9..e64dd622d (10 commits)fd7713cb9a...e64dd622d7
Created with: roll-dep external/abseil_cpp * Roll external/spirv-headers/ 69ab0f32d..efb6b4099 (2 commits)69ab0f32dc...efb6b4099d
Created with: roll-dep external/spirv-headers --------- 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': 'e64dd622d7643b838b4f9c594f3d22a5d33bf58c',
|
|
|
|
'effcee_revision': '2c97e5689ed8d7ab6ae5820f884f03a601ae124b',
|
|
|
|
'googletest_revision': '0953a17a4281fc26831da647ad3fcd5e21e6473b',
|
|
|
|
# Use protobufs before they gained the dependency on abseil
|
|
'protobuf_revision': 'v21.12',
|
|
|
|
're2_revision': '6dcd83d60f7944926bfd308cc13979fc53dd69ca',
|
|
|
|
'spirv_headers_revision': 'efb6b4099ddb8fa60f62956dee592c4b94ec6a49',
|
|
}
|
|
|
|
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'),
|
|
}
|
|
|