blob: 7d3991279770517210200dfd8dc3d533df2f4c98 [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
Mathias Agopian947f4f42009-05-22 01:27:01 -07008LOCAL_CFLAGS += -DGL_GLEXT_PROTOTYPES -DEGL_EGLEXT_PROTOTYPES
9
Mathias Agopian627e7b52009-05-21 19:21:59 -070010LOCAL_SHARED_LIBRARIES := \
11 libcutils \
12 libutils \
Doug Kwanb1bb6cf2009-10-04 19:27:57 -070013 libbinder \
Mathias Agopian627e7b52009-05-21 19:21:59 -070014 libui \
Mike Reedb5af3252009-07-10 15:33:21 -040015 libskia \
Mathias Agopian627e7b52009-05-21 19:21:59 -070016 libEGL \
Mathias Agopian000479f2010-02-09 17:46:37 -080017 libGLESv1_CM \
Mathias Agopian696257c2011-03-25 18:42:40 -070018 libgui
Mathias Agopian627e7b52009-05-21 19:21:59 -070019
20LOCAL_C_INCLUDES := \
21 $(call include-path-for, corecg graphics)
22
23LOCAL_MODULE:= bootanimation
24
25
26include $(BUILD_EXECUTABLE)