2009-05-21 19:21:59 -07:00
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
|
|
bootanimation_main.cpp \
|
|
|
|
BootAnimation.cpp
|
|
|
|
|
|
|
|
# need "-lrt" on Linux simulator to pick up clock_gettime
|
|
|
|
ifeq ($(TARGET_SIMULATOR),true)
|
|
|
|
ifeq ($(HOST_OS),linux)
|
|
|
|
LOCAL_LDLIBS += -lrt
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2009-05-22 01:27:01 -07:00
|
|
|
LOCAL_CFLAGS += -DGL_GLEXT_PROTOTYPES -DEGL_EGLEXT_PROTOTYPES
|
|
|
|
|
2009-05-21 19:21:59 -07:00
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
|
|
libcutils \
|
|
|
|
libutils \
|
2009-10-04 19:27:57 -07:00
|
|
|
libbinder \
|
2009-05-21 19:21:59 -07:00
|
|
|
libui \
|
2009-07-10 15:33:21 -04:00
|
|
|
libskia \
|
2009-05-21 19:21:59 -07:00
|
|
|
libEGL \
|
|
|
|
libGLESv1_CM
|
|
|
|
|
|
|
|
LOCAL_C_INCLUDES := \
|
|
|
|
$(call include-path-for, corecg graphics)
|
|
|
|
|
|
|
|
LOCAL_MODULE:= bootanimation
|
|
|
|
|
|
|
|
|
|
|
|
include $(BUILD_EXECUTABLE)
|