63665f2ac4
* commit 'a3633c25033b576ae160ea86194e4f7f20d82fe2': bootanimation: build 32-bit if 64-bit gl libraries are not available
29 lines
465 B
Makefile
29 lines
465 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
bootanimation_main.cpp \
|
|
BootAnimation.cpp
|
|
|
|
LOCAL_CFLAGS += -DGL_GLEXT_PROTOTYPES -DEGL_EGLEXT_PROTOTYPES
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libcutils \
|
|
liblog \
|
|
libandroidfw \
|
|
libutils \
|
|
libbinder \
|
|
libui \
|
|
libskia \
|
|
libEGL \
|
|
libGLESv1_CM \
|
|
libgui
|
|
|
|
LOCAL_MODULE:= bootanimation
|
|
|
|
ifdef TARGET_32_BIT_SURFACEFLINGER
|
|
LOCAL_32_BIT_ONLY := true
|
|
endif
|
|
|
|
include $(BUILD_EXECUTABLE)
|