blob: 2b8975943089af62b6339ea6037944815c88667f [file] [log] [blame]
Mathias Agopian627e7b52009-05-21 19:21:59 -07001LOCAL_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
Mathias Agopian947f4f42009-05-22 01:27:01 -070015LOCAL_CFLAGS += -DGL_GLEXT_PROTOTYPES -DEGL_EGLEXT_PROTOTYPES
16
Mathias Agopian627e7b52009-05-21 19:21:59 -070017LOCAL_SHARED_LIBRARIES := \
18 libcutils \
19 libutils \
Doug Kwanb1bb6cf2009-10-04 19:27:57 -070020 libbinder \
Mathias Agopian627e7b52009-05-21 19:21:59 -070021 libui \
Mike Reedb5af3252009-07-10 15:33:21 -040022 libskia \
Mathias Agopian627e7b52009-05-21 19:21:59 -070023 libEGL \
Mathias Agopian000479f2010-02-09 17:46:37 -080024 libGLESv1_CM \
25 libsurfaceflinger_client
Mathias Agopian627e7b52009-05-21 19:21:59 -070026
27LOCAL_C_INCLUDES := \
28 $(call include-path-for, corecg graphics)
29
30LOCAL_MODULE:= bootanimation
31
32
33include $(BUILD_EXECUTABLE)