summaryrefslogtreecommitdiffstats
path: root/minui/Android.mk
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2018-08-03 23:51:20 +0200
committerGerrit Code Review <noreply-gerritcodereview@google.com>2018-08-03 23:51:20 +0200
commitebc04d1e7ae8226edbe45e72ed323d4d21c2e135 (patch)
treed9041ae5a247ebcb4c6b7103c07bd6543f7db614 /minui/Android.mk
parentMerge "ui: Read custom recovery UI values via system property." (diff)
parentminui: Use runtime properties instead of build time vars. (diff)
downloadandroid_bootable_recovery-ebc04d1e7ae8226edbe45e72ed323d4d21c2e135.tar
android_bootable_recovery-ebc04d1e7ae8226edbe45e72ed323d4d21c2e135.tar.gz
android_bootable_recovery-ebc04d1e7ae8226edbe45e72ed323d4d21c2e135.tar.bz2
android_bootable_recovery-ebc04d1e7ae8226edbe45e72ed323d4d21c2e135.tar.lz
android_bootable_recovery-ebc04d1e7ae8226edbe45e72ed323d4d21c2e135.tar.xz
android_bootable_recovery-ebc04d1e7ae8226edbe45e72ed323d4d21c2e135.tar.zst
android_bootable_recovery-ebc04d1e7ae8226edbe45e72ed323d4d21c2e135.zip
Diffstat (limited to 'minui/Android.mk')
-rw-r--r--minui/Android.mk26
1 files changed, 0 insertions, 26 deletions
diff --git a/minui/Android.mk b/minui/Android.mk
index ae1552b1b..e858eaaae 100644
--- a/minui/Android.mk
+++ b/minui/Android.mk
@@ -41,32 +41,6 @@ LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include
LOCAL_MODULE := libminui
-# 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
-
-ifneq ($(TARGET_RECOVERY_DEFAULT_ROTATION),)
- LOCAL_CFLAGS += -DDEFAULT_ROTATION=$(TARGET_RECOVERY_DEFAULT_ROTATION)
-else
- LOCAL_CFLAGS += -DDEFAULT_ROTATION=ROTATION_NONE
-endif
-
include $(BUILD_STATIC_LIBRARY)
# libminui (shared library)