mirror of
https://github.com/KhronosGroup/SPIRV-Tools
synced 2024-12-25 01:01:04 +00:00
e5fcb7facf
* Roll external/googletest/ 96cd50c08..6a5938233 (4 commits)96cd50c082...6a5938233b
$ git log 96cd50c08..6a5938233 --date=short --no-merges --format='%ad %ae %s' 2024-01-25 dmauro Add support for Bzlmod for the next release https://bazel.build/external/overview#bzlmod 2024-01-23 absl-team Fix double-promotion warnings in AppropriateResolution() 2024-01-22 dinor googletest: Fix incorrect comment about `value_param` of `internal::MakeAndRegisterTestInfo` 2024-01-10 michael.128.leslie only apply -lregex for qnx710 and newer Created with: roll-dep external/googletest * Roll external/re2/ 264e71e88..826ad10e5 (1 commit)264e71e88e...826ad10e58
$ git log 264e71e88..826ad10e5 --date=short --no-merges --format='%ad %ae %s' 2024-01-19 junyer Delete an unused function. Created with: roll-dep external/re2 * Roll external/spirv-headers/ 5aa1dd8a1..1c9115b56 (1 commit)5aa1dd8a11...1c9115b562
$ git log 5aa1dd8a1..1c9115b56 --date=short --no-merges --format='%ad %ae %s' 2024-01-26 dneto List all licenses in the root LICENSE file. (#410) Created with: roll-dep external/spirv-headers --------- 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': '6a5938233b6519ba99ddb7c7314d45d3fa877969',
|
|
|
|
# Use protobufs before they gained the dependency on abseil
|
|
'protobuf_revision': 'v21.12',
|
|
|
|
're2_revision': '826ad10e58a042faf57d7c329b0fd0a04b797e0b',
|
|
'spirv_headers_revision': '1c9115b562bab79ee2160fbd845f41b815b9f21f',
|
|
}
|
|
|
|
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'),
|
|
}
|
|
|