From 31d16e5bf9e4edc8c3af08d8405ebe90bde99220 Mon Sep 17 00:00:00 2001 From: Colin Cross Date: Wed, 19 Mar 2014 18:09:01 -0700 Subject: [PATCH] bootanimation: build 32-bit if 64-bit gl libraries are not available Set LOCAL_32_BIT_ONLY if TARGET_32_BIT_SURFACEFLINGER is set. Change-Id: I76396cc9fe3fe45d1e98a44bf911d6e70922555a --- cmds/bootanimation/Android.mk | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cmds/bootanimation/Android.mk b/cmds/bootanimation/Android.mk index d5ff84e7dbbb4..dd987e087004e 100644 --- a/cmds/bootanimation/Android.mk +++ b/cmds/bootanimation/Android.mk @@ -24,5 +24,8 @@ LOCAL_C_INCLUDES := \ LOCAL_MODULE:= bootanimation +ifdef TARGET_32_BIT_SURFACEFLINGER +LOCAL_32_BIT_ONLY := true +endif include $(BUILD_EXECUTABLE)