enable download of Android dependencies on Apple Silicon (flutter/engine#34896)

This commit is contained in:
Jim Graham 2022-07-26 14:47:05 -07:00 committed by GitHub
parent 352bf98b3f
commit 1225b72ef3

2
DEPS
View File

@ -61,7 +61,7 @@ vars = {
'download_dart_sdk': True,
# Checkout Android dependencies only on platforms where we build for Android targets.
'download_android_deps': 'host_cpu == "x64" and (host_os == "mac" or host_os == "linux")',
'download_android_deps': 'host_os == "mac" or host_os == "linux"',
# Checkout Windows dependencies only if we are building on Windows.
'download_windows_deps' : 'host_os == "win"',