Android.mk revision b1bb6cfe91c97fccd720de565fa69ed787ae1cbc
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_CFLAGS += -DGL_GLEXT_PROTOTYPES -DEGL_EGLEXT_PROTOTYPES
16
17LOCAL_SHARED_LIBRARIES := \
18	libcutils \
19	libutils \
20	libbinder \
21    libui \
22	libskia \
23    libEGL \
24    libGLESv1_CM
25
26LOCAL_C_INCLUDES := \
27	$(call include-path-for, corecg graphics)
28
29LOCAL_MODULE:= bootanimation
30
31
32include $(BUILD_EXECUTABLE)
33