| Mathias Agopian | 627e7b5 | 2009-05-21 19:21:59 -0700 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | include $(CLEAR_VARS) | ||||
| 3 | |||||
| 4 | LOCAL_SRC_FILES:= \ | ||||
| Andreas Gampe | cfedceb | 2014-09-30 21:48:18 -0700 | [diff] [blame] | 5 | bootanimation_main.cpp \ |
| Geoffrey Pitsch | d6d9a1d | 2016-06-08 00:38:58 -0700 | [diff] [blame] | 6 | audioplay.cpp \ |
| Andreas Gampe | cfedceb | 2014-09-30 21:48:18 -0700 | [diff] [blame] | 7 | BootAnimation.cpp |
| Mathias Agopian | 627e7b5 | 2009-05-21 19:21:59 -0700 | [diff] [blame] | 8 | |
| Mathias Agopian | 947f4f4 | 2009-05-22 01:27:01 -0700 | [diff] [blame] | 9 | LOCAL_CFLAGS += -DGL_GLEXT_PROTOTYPES -DEGL_EGLEXT_PROTOTYPES |
| 10 | |||||
| Andreas Gampe | cfedceb | 2014-09-30 21:48:18 -0700 | [diff] [blame] | 11 | LOCAL_CFLAGS += -Wall -Werror -Wunused -Wunreachable-code |
| 12 | |||||
| Geoffrey Pitsch | d6d9a1d | 2016-06-08 00:38:58 -0700 | [diff] [blame] | 13 | LOCAL_C_INCLUDES += \ |
| 14 | external/tinyalsa/include \ | ||||
| 15 | frameworks/wilhelm/include | ||||
| Mike Lockwood | ebf9a0d | 2014-10-02 16:08:47 -0700 | [diff] [blame] | 16 | |
| Mathias Agopian | 627e7b5 | 2009-05-21 19:21:59 -0700 | [diff] [blame] | 17 | LOCAL_SHARED_LIBRARIES := \ |
| Andreas Gampe | cfedceb | 2014-09-30 21:48:18 -0700 | [diff] [blame] | 18 | libcutils \ |
| 19 | liblog \ | ||||
| 20 | libandroidfw \ | ||||
| 21 | libutils \ | ||||
| 22 | libbinder \ | ||||
| Mathias Agopian | 627e7b5 | 2009-05-21 19:21:59 -0700 | [diff] [blame] | 23 | libui \ |
| Andreas Gampe | cfedceb | 2014-09-30 21:48:18 -0700 | [diff] [blame] | 24 | libskia \ |
| Mathias Agopian | 627e7b5 | 2009-05-21 19:21:59 -0700 | [diff] [blame] | 25 | libEGL \ |
| Mathias Agopian | 000479f | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 26 | libGLESv1_CM \ |
| Mike Lockwood | ebf9a0d | 2014-10-02 16:08:47 -0700 | [diff] [blame] | 27 | libgui \ |
| Geoffrey Pitsch | d6d9a1d | 2016-06-08 00:38:58 -0700 | [diff] [blame] | 28 | libOpenSLES \ |
| Mike Lockwood | ebf9a0d | 2014-10-02 16:08:47 -0700 | [diff] [blame] | 29 | libtinyalsa |
| Mathias Agopian | 627e7b5 | 2009-05-21 19:21:59 -0700 | [diff] [blame] | 30 | |
| Mathias Agopian | 627e7b5 | 2009-05-21 19:21:59 -0700 | [diff] [blame] | 31 | LOCAL_MODULE:= bootanimation |
| 32 | |||||
| Tom Cherry | c2de7a7 | 2015-08-14 13:01:13 -0700 | [diff] [blame] | 33 | LOCAL_INIT_RC := bootanim.rc |
| 34 | |||||
| Colin Cross | 31d16e5 | 2014-03-19 18:09:01 -0700 | [diff] [blame] | 35 | ifdef TARGET_32_BIT_SURFACEFLINGER |
| 36 | LOCAL_32_BIT_ONLY := true | ||||
| 37 | endif | ||||
| Mathias Agopian | 627e7b5 | 2009-05-21 19:21:59 -0700 | [diff] [blame] | 38 | |
| Mathias Agopian | 627e7b5 | 2009-05-21 19:21:59 -0700 | [diff] [blame] | 39 | include $(BUILD_EXECUTABLE) |