зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1494509 - disable geckodriver on aarch64 windows; r=ato
This commit is contained in:
Родитель
3445a4da75
Коммит
24d4f33325
|
@ -919,6 +919,9 @@ set_config('ENABLE_MARIONETTE', marionette)
|
|||
def geckodriver_default(enable_tests, target, cross_compile, hazard, asan):
|
||||
if not enable_tests:
|
||||
return False
|
||||
# geckodriver depends on winapi 0.2.8, which doesn't work with AArch64.
|
||||
if target.os == 'WINNT' and target.cpu == 'aarch64':
|
||||
return False
|
||||
if hazard or target.os == 'Android' or (asan and cross_compile):
|
||||
return False
|
||||
return True
|
||||
|
|
Загрузка…
Ссылка в новой задаче