blob: d6ecbe31f5e8052d7f4128e20bfb463a74ce6029 [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 \
Mike Lockwoodebf9a0d2014-10-02 16:08:47 -07006 AudioPlayer.cpp \
Mathias Agopian627e7b52009-05-21 19:21:59 -07007 BootAnimation.cpp
8
Mathias Agopian947f4f42009-05-22 01:27:01 -07009LOCAL_CFLAGS += -DGL_GLEXT_PROTOTYPES -DEGL_EGLEXT_PROTOTYPES
10
Mike Lockwoodebf9a0d2014-10-02 16:08:47 -070011LOCAL_C_INCLUDES += external/tinyalsa/include
12
Mathias Agopian627e7b52009-05-21 19:21:59 -070013LOCAL_SHARED_LIBRARIES := \
14 libcutils \
Ying Wangd6858942013-04-09 21:54:12 -070015 liblog \
Mathias Agopian83c64e62012-02-20 16:58:20 -080016 libandroidfw \
Mathias Agopian627e7b52009-05-21 19:21:59 -070017 libutils \
Doug Kwanb1bb6cf2009-10-04 19:27:57 -070018 libbinder \
Mathias Agopian627e7b52009-05-21 19:21:59 -070019 libui \
Mike Reedb5af3252009-07-10 15:33:21 -040020 libskia \
Mathias Agopian627e7b52009-05-21 19:21:59 -070021 libEGL \
Mathias Agopian000479f2010-02-09 17:46:37 -080022 libGLESv1_CM \
Mike Lockwoodebf9a0d2014-10-02 16:08:47 -070023 libgui \
24 libtinyalsa
Mathias Agopian627e7b52009-05-21 19:21:59 -070025
Mathias Agopian627e7b52009-05-21 19:21:59 -070026LOCAL_MODULE:= bootanimation
27
Colin Cross31d16e52014-03-19 18:09:01 -070028ifdef TARGET_32_BIT_SURFACEFLINGER
29LOCAL_32_BIT_ONLY := true
30endif
Mathias Agopian627e7b52009-05-21 19:21:59 -070031
32include $(BUILD_EXECUTABLE)