mirror of
https://github.com/KhronosGroup/SPIRV-Tools
synced 2024-11-22 19:50:05 +00:00
9fe41e60d8
* Update test for parsing memory access masks Needed to support SPV_INTEL_memory_access_aliasing extension There is a negative test that checks unused mask bits. Some of those bits are now sued by the new Intel extension. * Update deps for new SPIRV-Headers
27 lines
762 B
Python
27 lines
762 B
Python
use_relative_paths = True
|
|
|
|
vars = {
|
|
'github': 'https://github.com',
|
|
|
|
'effcee_revision': 'ddf5e2bb92957dc8a12c5392f8495333d6844133',
|
|
'googletest_revision': 'f45d5865ed0b2b8912244627cdf508a24cc6ccb4',
|
|
're2_revision': '611baecbcedc9cec1f46e38616b6d8880b676c03',
|
|
'spirv_headers_revision': '6a55fade62dec6a406a5a721148f88a2211cbefa',
|
|
}
|
|
|
|
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'),
|
|
}
|
|
|