mirror of
https://github.com/KhronosGroup/SPIRV-Tools
synced 2024-11-22 03:30:06 +00:00
a6b57f2f0e
* Roll external/effcee/ 6d3b974a7..19b4aa87a (1 commit)6d3b974a77...19b4aa87af
$ git log 6d3b974a7..19b4aa87a --date=short --no-merges --format='%ad %ae %s' 2023-06-21 stevenperron Add binary dir for abseil Created with: roll-dep external/effcee * Roll external/googletest/ 9b12f749f..fb11778f4 (4 commits)9b12f749fa...fb11778f43
$ git log 9b12f749f..fb11778f4 --date=short --no-merges --format='%ad %ae %s' 2023-06-20 juan cmake: Clean up policy code 2023-06-19 juan cmake: Raise min to 3.6 2023-06-19 git Change C++11 requirement to C++14 2023-06-16 73937934+zencatalyst Update README.md Created with: roll-dep external/googletest * Roll external/spirv-headers/ 6e09e44cd..10db9d4e1 (1 commit)6e09e44cd8...10db9d4e19
$ git log 6e09e44cd..10db9d4e1 --date=short --no-merges --format='%ad %ae %s' 2023-06-21 kevin.petit Add definitions for SVP_EXT_image_raw10_raw12 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': 'fb11778f43d5844ca9e2016bae75b22d26ea451f',
|
|
|
|
# Use protobufs before they gained the dependency on abseil
|
|
'protobuf_revision': 'v21.12',
|
|
|
|
're2_revision': '7c5e396af825562ec8321fdbf2f1cf276b26e3ae',
|
|
'spirv_headers_revision': '10db9d4e194246a020a4148e220837ac7c68cfd9',
|
|
}
|
|
|
|
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'),
|
|
}
|
|
|