blob: 2ee586f2c3ca72c10b662fc267f84c394ff9c228 [file] [log] [blame]
Mathias Agopian627e7b52009-05-21 19:21:59 -07001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_SRC_FILES:= \
Andreas Gampecfedceb2014-09-30 21:48:18 -07005 bootanimation_main.cpp \
6 AudioPlayer.cpp \
7 BootAnimation.cpp
Mathias Agopian627e7b52009-05-21 19:21:59 -07008
Mathias Agopian947f4f42009-05-22 01:27:01 -07009LOCAL_CFLAGS += -DGL_GLEXT_PROTOTYPES -DEGL_EGLEXT_PROTOTYPES
10
Andreas Gampecfedceb2014-09-30 21:48:18 -070011LOCAL_CFLAGS += -Wall -Werror -Wunused -Wunreachable-code
12
Mike Lockwoodebf9a0d2014-10-02 16:08:47 -070013LOCAL_C_INCLUDES += external/tinyalsa/include
14
Mathias Agopian627e7b52009-05-21 19:21:59 -070015LOCAL_SHARED_LIBRARIES := \
Andreas Gampecfedceb2014-09-30 21:48:18 -070016 libcutils \
17 liblog \
18 libandroidfw \
19 libutils \
20 libbinder \
Mathias Agopian627e7b52009-05-21 19:21:59 -070021 libui \
Andreas Gampecfedceb2014-09-30 21:48:18 -070022 libskia \
Mathias Agopian627e7b52009-05-21 19:21:59 -070023 libEGL \
Mathias Agopian000479f2010-02-09 17:46:37 -080024 libGLESv1_CM \
Mike Lockwoodebf9a0d2014-10-02 16:08:47 -070025 libgui \
26 libtinyalsa
Mathias Agopian627e7b52009-05-21 19:21:59 -070027
Mathias Agopian627e7b52009-05-21 19:21:59 -070028LOCAL_MODULE:= bootanimation
29
Colin Cross31d16e52014-03-19 18:09:01 -070030ifdef TARGET_32_BIT_SURFACEFLINGER
31LOCAL_32_BIT_ONLY := true
32endif
Mathias Agopian627e7b52009-05-21 19:21:59 -070033
34include $(BUILD_EXECUTABLE)