mirror of
https://github.com/KhronosGroup/SPIRV-Tools
synced 2024-11-22 11:40:05 +00:00
beabd8b7f4
* Roll external/abseil_cpp/ 1278ee9bd..074a32af6 (5 commits)1278ee9bd9...074a32af66
Created with: roll-dep external/abseil_cpp * Roll external/spirv-headers/ 2acb319af..41a8eb27f (1 commit)2acb319af3...41a8eb27f1
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': '074a32af66648c74dd0104e251e44ace5b59f7fa',
|
|
|
|
'effcee_revision': 'd74d33d93043952a99ae7cd7458baf6bc8df1da0',
|
|
|
|
'googletest_revision': '34ad51b3dc4f922d8ab622491dd44fc2c39afee9',
|
|
|
|
# Use protobufs before they gained the dependency on abseil
|
|
'protobuf_revision': 'v21.12',
|
|
|
|
're2_revision': '6dcd83d60f7944926bfd308cc13979fc53dd69ca',
|
|
|
|
'spirv_headers_revision': '41a8eb27f1a7554dadfcdd45819954eaa94935e6',
|
|
}
|
|
|
|
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'),
|
|
}
|
|
|