mirror of
https://github.com/KhronosGroup/SPIRV-Tools
synced 2025-01-12 17:30:15 +00:00
daad2295c9
* Roll external/googletest/ cc366710b..1ed6a8c67 (3 commits)cc366710bb...1ed6a8c67a
$ git log cc366710b..1ed6a8c67 --date=short --no-merges --format='%ad %ae %s' 2023-07-19 dmauro Remove unused cast implementation 2023-07-11 kim.valen Fixed variables that could be declared 'const' 2023-05-11 chrisjohnsonmail add support for nrf52 Created with: roll-dep external/googletest * Roll external/spirv-headers/ f1ba373ef..14914db17 (6 commits)f1ba373ef0...14914db17a
$ git log f1ba373ef..14914db17 --date=short --no-merges --format='%ad %ae %s' 2023-07-19 kevin.petit Report failures in makeHeaders 2023-07-19 alanbaker Revert "Add support for fp_max_error extension" 2023-06-21 arvind.sudarsanam Change kind of FPMaxErrorDecorationINTEL to LiteralFloat 2023-06-09 arvind.sudarsanam Interchange capability and decoration 2023-03-09 arvind.sudarsanam Add parameters 2023-02-02 arvind.sudarsanam Header files changes to support SPV_INTEL_fp_max_error spec extension 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': '1ed6a8c67a0bd675149ece27bbec0ef1759854cf',
|
|
|
|
# Use protobufs before they gained the dependency on abseil
|
|
'protobuf_revision': 'v21.12',
|
|
|
|
're2_revision': 'e66463312e1d30d427bbde6c40e7fd627dcfb82e',
|
|
'spirv_headers_revision': '14914db17a1fc16e06c4e49e5353bb80b3267e9c',
|
|
}
|
|
|
|
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'),
|
|
}
|
|
|