17e316cce0
Also remove the 0xff comparison when validating the bootloader
message fields. As the fields won't be erased to 0xff after we
remove the MTD support.
Bug: 28202046
Test: The recovery folder compiles for aosp_x86-eng
Change-Id: Ibb30ea1b2b28676fb08c7e92a1e5f7b6ef3247ab
(cherry picked from commit 7aa88748f6
)
51 lines
1.3 KiB
Makefile
51 lines
1.3 KiB
Makefile
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := \
|
|
events.cpp \
|
|
graphics.cpp \
|
|
graphics_adf.cpp \
|
|
graphics_drm.cpp \
|
|
graphics_fbdev.cpp \
|
|
resources.cpp \
|
|
|
|
LOCAL_WHOLE_STATIC_LIBRARIES += libadf
|
|
LOCAL_WHOLE_STATIC_LIBRARIES += libdrm
|
|
LOCAL_WHOLE_STATIC_LIBRARIES += libsync_recovery
|
|
LOCAL_STATIC_LIBRARIES += libpng
|
|
LOCAL_CFLAGS := -Werror
|
|
|
|
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_CLANG := true
|
|
LOCAL_MODULE := libminui
|
|
LOCAL_WHOLE_STATIC_LIBRARIES += libminui
|
|
LOCAL_SHARED_LIBRARIES := libpng
|
|
LOCAL_CFLAGS := -Werror
|
|
include $(BUILD_SHARED_LIBRARY)
|