Android.mk revision 627e7b50be41e4fdee758a1bfad3a55de56b4e27
1LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_SRC_FILES:= \
5	bootanimation_main.cpp \
6	BootAnimation.cpp
7
8# need "-lrt" on Linux simulator to pick up clock_gettime
9ifeq ($(TARGET_SIMULATOR),true)
10	ifeq ($(HOST_OS),linux)
11		LOCAL_LDLIBS += -lrt
12	endif
13endif
14
15LOCAL_SHARED_LIBRARIES := \
16	libcutils \
17	libutils \
18    libui \
19	libcorecg \
20	libsgl \
21    libEGL \
22    libGLESv1_CM
23
24LOCAL_C_INCLUDES := \
25	$(call include-path-for, corecg graphics)
26
27LOCAL_MODULE:= bootanimation
28
29
30include $(BUILD_EXECUTABLE)
31