mirror of
https://github.com/KhronosGroup/SPIRV-Tools
synced 2024-12-25 17:21:06 +00:00
2a238ed24d
* Roll external/re2/ 974f44c8d..7e0c1a9e2 (1 commit)974f44c8d4...7e0c1a9e24
$ git log 974f44c8d..7e0c1a9e2 --date=short --no-merges --format='%ad %ae %s' 2023-11-16 junyer WebAssembly support for threads is... fraught at every level. Created with: roll-dep external/re2 * Roll external/spirv-headers/ 38f39dae5..cca08c63c (2 commits)38f39dae5b...cca08c63ce
$ git log 38f39dae5..cca08c63c --date=short --no-merges --format='%ad %ae %s' 2023-11-15 viktoria.maksimova Change token IDs for global_variable_fpga_decorations and global_variable_host_access (#389) 2023-11-15 johnkslang It seems d790ced752b5bfc06b6988baadef6eb2d16bdf96 add tabs. (#390) 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': 'b10fad38c4026a29ea6561ab15fc4818170d1c10',
|
|
|
|
# Use protobufs before they gained the dependency on abseil
|
|
'protobuf_revision': 'v21.12',
|
|
|
|
're2_revision': '7e0c1a9e2417e70e5f0efc323267ac71d1fa0685',
|
|
'spirv_headers_revision': 'cca08c63cefa129d082abca0302adcb81610b465',
|
|
}
|
|
|
|
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'),
|
|
}
|
|
|