• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1LOCAL_PATH := $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_SRC_FILES := graphics.c events.c resources.c
5
6LOCAL_C_INCLUDES +=\
7    external/libpng\
8    external/zlib
9
10LOCAL_MODULE := libminui
11
12# This used to compare against values in double-quotes (which are just
13# ordinary characters in this context).  Strip double-quotes from the
14# value so that either will work.
15
16ifeq ($(subst ",,$(TARGET_RECOVERY_PIXEL_FORMAT)),RGBX_8888)
17  LOCAL_CFLAGS += -DRECOVERY_RGBX
18endif
19ifeq ($(subst ",,$(TARGET_RECOVERY_PIXEL_FORMAT)),BGRA_8888)
20  LOCAL_CFLAGS += -DRECOVERY_BGRA
21endif
22
23include $(BUILD_STATIC_LIBRARY)
24