blob: d5ff84e7dbbb407726d85a5e1b9b4903646a39af [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 \
Ying Wangd6858942013-04-09 21:54:12 -070012 liblog \
Mathias Agopian83c64e62012-02-20 16:58:20 -080013 libandroidfw \
Mathias Agopian627e7b52009-05-21 19:21:59 -070014 libutils \
Doug Kwanb1bb6cf2009-10-04 19:27:57 -070015 libbinder \
Mathias Agopian627e7b52009-05-21 19:21:59 -070016 libui \
Mike Reedb5af3252009-07-10 15:33:21 -040017 libskia \
Mathias Agopian627e7b52009-05-21 19:21:59 -070018 libEGL \
Mathias Agopian000479f2010-02-09 17:46:37 -080019 libGLESv1_CM \
Mathias Agopian696257c2011-03-25 18:42:40 -070020 libgui
Mathias Agopian627e7b52009-05-21 19:21:59 -070021
22LOCAL_C_INCLUDES := \
23 $(call include-path-for, corecg graphics)
24
25LOCAL_MODULE:= bootanimation
26
27
28include $(BUILD_EXECUTABLE)