blob: 8c46b212814ad0fc3d93af39a82fcf6e684d4eba [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 \
Mathias Agopian83c64e62012-02-20 16:58:20 -080012 libandroidfw \
Mathias Agopian627e7b52009-05-21 19:21:59 -070013 libutils \
Doug Kwanb1bb6cf2009-10-04 19:27:57 -070014 libbinder \
Mathias Agopian627e7b52009-05-21 19:21:59 -070015 libui \
Mike Reedb5af3252009-07-10 15:33:21 -040016 libskia \
Mathias Agopian627e7b52009-05-21 19:21:59 -070017 libEGL \
Mathias Agopian000479f2010-02-09 17:46:37 -080018 libGLESv1_CM \
Mathias Agopian696257c2011-03-25 18:42:40 -070019 libgui
Mathias Agopian627e7b52009-05-21 19:21:59 -070020
21LOCAL_C_INCLUDES := \
22 $(call include-path-for, corecg graphics)
23
24LOCAL_MODULE:= bootanimation
25
26
27include $(BUILD_EXECUTABLE)