mirror of
https://github.com/KhronosGroup/SPIRV-Tools
synced 2024-11-22 03:30:06 +00:00
933db564ca
* Roll external/googletest/ beb552fb4..2dd1c1319 (1 commit)beb552fb47...2dd1c13195
$ git log beb552fb4..2dd1c1319 --date=short --no-merges --format='%ad %ae %s' 2023-10-05 absl-team Fix RE::Init for Android and NetBSD. Created with: roll-dep external/googletest * Roll external/re2/ 26f7d889e..35bb195de (1 commit)26f7d889e1...35bb195dec
$ git log 26f7d889e..35bb195de --date=short --no-merges --format='%ad %ae %s' 2023-10-05 junyer Update Unicode data to 15.1.0. 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': '2dd1c131950043a8ad5ab0d2dda0e0970596586a',
|
|
|
|
# Use protobufs before they gained the dependency on abseil
|
|
'protobuf_revision': 'v21.12',
|
|
|
|
're2_revision': '35bb195dec329ab061472b19b0f4cb68ab3dde0a',
|
|
'spirv_headers_revision': 'e867c06631767a2d96424cbec530f9ee5e78180f',
|
|
}
|
|
|
|
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'),
|
|
}
|
|
|