diff options
author | Winston Man <hkman@google.com> | 2017-10-17 21:24:31 +0100 |
---|---|---|
committer | Winston Man <hkman@google.com> | 2017-10-17 21:37:43 +0100 |
commit | 50365007b6706167a3c4ce0b39cdab247206f2b3 (patch) | |
tree | 2280c0a09fe81126e812bf562d71d54d4a1b11be /packages/CtsShim | |
parent | d3dc9171d4ed4c38d63fbe02e7522e89dc55a68f (diff) |
Update build target to restrict it to arm and x86 only
This is to address build breakage for MIPS
https://android-build.googleplex.com/builds/submitted/4400887/sdk_phone_mips-sdk_mac/latest/logs
Bug: 64504762
Test: build successful with target marlin-eng (arm), gce_x86_phone (x86) and sdk_phone_mips (mips)
Change-Id: I710c823ae235d0650b4d1a018180b552261aecc5
Diffstat (limited to 'packages/CtsShim')
-rw-r--r-- | packages/CtsShim/Android.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/CtsShim/Android.mk b/packages/CtsShim/Android.mk index b6e322e7069a..88b85e078f45 100644 --- a/packages/CtsShim/Android.mk +++ b/packages/CtsShim/Android.mk @@ -30,6 +30,7 @@ LOCAL_BUILT_MODULE_STEM := package.apk # Make sure the build system doesn't try to resign the APK LOCAL_CERTIFICATE := PRESIGNED LOCAL_DEX_PREOPT := false +LOCAL_MODULE_TARGET_ARCH := arm arm64 x86 x86_64 my_archs := arm x86 my_src_arch := $(call get-prebuilt-src-arch, $(my_archs)) @@ -50,6 +51,7 @@ LOCAL_BUILT_MODULE_STEM := package.apk # Make sure the build system doesn't try to resign the APK LOCAL_CERTIFICATE := PRESIGNED LOCAL_DEX_PREOPT := false +LOCAL_MODULE_TARGET_ARCH := arm arm64 x86 x86_64 my_archs := arm x86 my_src_arch := $(call get-prebuilt-src-arch, $(my_archs)) |