Skip to content

Commit 536ca0b

Browse files
committed
[build] Download Android SDKs only on x64 platforms
This agrees with the Flutter engine DEPS, where the SDKs are not downloaded on arm64 hosts because they are not available as CIPD packages for arm64. Bug: flutter/flutter#92911 Change-Id: I1a64c85fdac918734b60cf23a7c5034eba2a133b Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/218922 Reviewed-by: Daco Harkes <[email protected]>
1 parent 0b94228 commit 536ca0b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

DEPS

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ vars = {
5353
"checkout_benchmarks_internal": False,
5454

5555
# Checkout Android dependencies only on Mac and Linux.
56-
"download_android_deps": 'host_os == "mac" or host_os == "linux"',
56+
"download_android_deps":
57+
"(host_os == mac or host_os == linux) and host_cpu == x64",
5758

5859
# Checkout extra javascript engines for testing or benchmarking.
5960
# d8, the V8 shell, is always checked out.

0 commit comments

Comments
 (0)