The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1 | LOCAL_PATH := $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
Greg Hackmann | 41909dd | 2014-04-25 10:39:50 -0700 | [diff] [blame] | 4 | LOCAL_SRC_FILES := graphics.c graphics_adf.c graphics_fbdev.c events.c \ |
| 5 | resources.c |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 6 | |
| 7 | LOCAL_C_INCLUDES +=\ |
| 8 | external/libpng\ |
| 9 | external/zlib |
| 10 | |
Greg Hackmann | 41909dd | 2014-04-25 10:39:50 -0700 | [diff] [blame] | 11 | LOCAL_WHOLE_STATIC_LIBRARIES += libadf |
| 12 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 13 | LOCAL_MODULE := libminui |
| 14 | |
Doug Zongker | 9c5efe6 | 2012-07-11 13:21:02 -0700 | [diff] [blame] | 15 | # This used to compare against values in double-quotes (which are just |
| 16 | # ordinary characters in this context). Strip double-quotes from the |
| 17 | # value so that either will work. |
| 18 | |
| 19 | ifeq ($(subst ",,$(TARGET_RECOVERY_PIXEL_FORMAT)),RGBX_8888) |
Michael Ward | 9d1bcdf | 2011-06-22 14:30:34 -0700 | [diff] [blame] | 20 | LOCAL_CFLAGS += -DRECOVERY_RGBX |
| 21 | endif |
Doug Zongker | 9c5efe6 | 2012-07-11 13:21:02 -0700 | [diff] [blame] | 22 | ifeq ($(subst ",,$(TARGET_RECOVERY_PIXEL_FORMAT)),BGRA_8888) |
Michael Ward | 9d1bcdf | 2011-06-22 14:30:34 -0700 | [diff] [blame] | 23 | LOCAL_CFLAGS += -DRECOVERY_BGRA |
Doug Zongker | be3e6f1 | 2011-01-13 16:43:44 -0800 | [diff] [blame] | 24 | endif |
| 25 | |
Doug Zongker | c560a67 | 2012-12-18 16:31:27 -0800 | [diff] [blame] | 26 | ifneq ($(TARGET_RECOVERY_OVERSCAN_PERCENT),) |
| 27 | LOCAL_CFLAGS += -DOVERSCAN_PERCENT=$(TARGET_RECOVERY_OVERSCAN_PERCENT) |
| 28 | else |
| 29 | LOCAL_CFLAGS += -DOVERSCAN_PERCENT=0 |
| 30 | endif |
| 31 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 32 | include $(BUILD_STATIC_LIBRARY) |