4 lines
140 B
Python
4 lines
140 B
Python
def match_unsupported(abi, platform, device_platform, toolchain, subtest=None):
|
|
if abi == 'armeabi':
|
|
return abi
|
|
return None
|