blob: 7c8842ca02316ba9b6e3aefd2cd9e3f157745c0c [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
Tom Cherryc2de7a72015-08-14 13:01:13 -070030LOCAL_INIT_RC := bootanim.rc
31
Colin Cross31d16e52014-03-19 18:09:01 -070032ifdef TARGET_32_BIT_SURFACEFLINGER
33LOCAL_32_BIT_ONLY := true
34endif
Mathias Agopian627e7b52009-05-21 19:21:59 -070035
36include $(BUILD_EXECUTABLE)