mirror of
https://github.com/KhronosGroup/SPIRV-Tools
synced 2024-11-23 20:20:06 +00:00
2a7a561c0c
* Fix tests for updated grammar * LocalSizeHintId should have three operands, not just 1 * Update deps
27 lines
762 B
Python
27 lines
762 B
Python
use_relative_paths = True
|
|
|
|
vars = {
|
|
'github': 'https://github.com',
|
|
|
|
'effcee_revision': '2ec8f8738118cc483b67c04a759fee53496c5659',
|
|
'googletest_revision': 'b7d472f1225c5a64943821d8483fecb469d3f382',
|
|
're2_revision': 'f8e389f3acdc2517562924239e2a188037393683',
|
|
'spirv_headers_revision': 'cf653e4ca4858583802b0d1656bc934edff6bd7f',
|
|
}
|
|
|
|
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'),
|
|
}
|
|
|