mirror of
https://github.com/KhronosGroup/SPIRV-Tools
synced 2024-11-22 03:30:06 +00:00
abd548b817
* Roll external/googletest/ 61332bd7e..cb5cd96bc (6 commits)61332bd7e8...cb5cd96bca
$ git log 61332bd7e..cb5cd96bc --date=short --no-merges --format='%ad %ae %s' 2023-08-22 dinor googletest: Replace http with https in links to docs 2023-08-20 elior.s Update advanced.md 2023-08-11 sch Changed 2 public links from http to https 2023-08-11 sch Changed 3 public links from http to https 2023-08-11 sch Changed 2 public links from http to https 2023-08-11 sch Changed 3 public links from http to https Created with: roll-dep external/googletest * Roll external/re2/ 08d338fe4..73031bbc0 (1 commit)08d338fe48...73031bbc08
$ git log 08d338fe4..73031bbc0 --date=short --no-merges --format='%ad %ae %s' 2023-08-22 junyer Reset the Bzlmod compatibility level to 1. 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': 'cb5cd96bcafc15eaaf73517357b596e9ca1e71b4',
|
|
|
|
# Use protobufs before they gained the dependency on abseil
|
|
'protobuf_revision': 'v21.12',
|
|
|
|
're2_revision': '73031bbc08cb3e3200497be4a50e37d6f3acc1d0',
|
|
'spirv_headers_revision': 'b8b9eb8640c8c0107ba580fbcb10f969022ca32c',
|
|
}
|
|
|
|
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'),
|
|
}
|
|
|