mirror of
https://github.com/KhronosGroup/SPIRV-Tools
synced 2024-11-22 11:40:05 +00:00
044ff1aabf
- Update SPIR-V headers. - Add validator support. - Add validator tests.
27 lines
762 B
Python
27 lines
762 B
Python
use_relative_paths = True
|
|
|
|
vars = {
|
|
'github': 'https://github.com',
|
|
|
|
'effcee_revision': 'ddf5e2bb92957dc8a12c5392f8495333d6844133',
|
|
'googletest_revision': '548b13dc3c02b93f60eeff9a0cc6e11c1ea722ca',
|
|
're2_revision': '5723bb8950318135ed9cf4fc76bed988a087f536',
|
|
'spirv_headers_revision': 'b2a156e1c0434bc8c99aaebba1c7be98be7ac580',
|
|
}
|
|
|
|
deps = {
|
|
'external/effcee':
|
|
Var('github') + '/google/effcee.git@' + Var('effcee_revision'),
|
|
|
|
'external/googletest':
|
|
Var('github') + '/google/googletest.git@' + Var('googletest_revision'),
|
|
|
|
'external/re2':
|
|
Var('github') + '/google/re2.git@' + Var('re2_revision'),
|
|
|
|
'external/spirv-headers':
|
|
Var('github') + '/KhronosGroup/SPIRV-Headers.git@' +
|
|
Var('spirv_headers_revision'),
|
|
}
|
|
|