From 1225b72ef3df6cfb85e73fe65b2ce10f390062ce Mon Sep 17 00:00:00 2001 From: Jim Graham Date: Tue, 26 Jul 2022 14:47:05 -0700 Subject: [PATCH] enable download of Android dependencies on Apple Silicon (flutter/engine#34896) --- DEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DEPS b/DEPS index 76bc2cd3ab5..1321accce3f 100644 --- a/DEPS +++ b/DEPS @@ -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"',