0713819fd2
This lets us recognize whether we have up/down/power, say, and tailor the UI accordingly. Change-Id: If94e454f14243b59d2f473ac9a436bd60591da01
45 lines
1.1 KiB
Makefile
45 lines
1.1 KiB
Makefile
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := \
|
|
events.cpp \
|
|
graphics.c \
|
|
graphics_adf.c \
|
|
graphics_fbdev.c \
|
|
resources.c \
|
|
|
|
LOCAL_WHOLE_STATIC_LIBRARIES += libadf
|
|
LOCAL_STATIC_LIBRARIES += libpng
|
|
|
|
LOCAL_MODULE := libminui
|
|
|
|
LOCAL_CLANG := true
|
|
|
|
# This used to compare against values in double-quotes (which are just
|
|
# ordinary characters in this context). Strip double-quotes from the
|
|
# value so that either will work.
|
|
|
|
ifeq ($(subst ",,$(TARGET_RECOVERY_PIXEL_FORMAT)),ABGR_8888)
|
|
LOCAL_CFLAGS += -DRECOVERY_ABGR
|
|
endif
|
|
ifeq ($(subst ",,$(TARGET_RECOVERY_PIXEL_FORMAT)),RGBX_8888)
|
|
LOCAL_CFLAGS += -DRECOVERY_RGBX
|
|
endif
|
|
ifeq ($(subst ",,$(TARGET_RECOVERY_PIXEL_FORMAT)),BGRA_8888)
|
|
LOCAL_CFLAGS += -DRECOVERY_BGRA
|
|
endif
|
|
|
|
ifneq ($(TARGET_RECOVERY_OVERSCAN_PERCENT),)
|
|
LOCAL_CFLAGS += -DOVERSCAN_PERCENT=$(TARGET_RECOVERY_OVERSCAN_PERCENT)
|
|
else
|
|
LOCAL_CFLAGS += -DOVERSCAN_PERCENT=0
|
|
endif
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
|
|
# Used by OEMs for factory test images.
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := libminui
|
|
LOCAL_WHOLE_STATIC_LIBRARIES += libminui
|
|
LOCAL_SHARED_LIBRARIES := libpng
|
|
include $(BUILD_SHARED_LIBRARY)
|