summaryrefslogtreecommitdiffstats
path: root/minui/Android.mk
diff options
context:
space:
mode:
authorDoug Zongker <dougz@android.com>2013-01-03 00:45:53 +0100
committerAndroid Git Automerger <android-git-automerger@android.com>2013-01-03 00:45:53 +0100
commitf7d423403d0aed6b8488559185e2246257abc58b (patch)
tree278ec6c91818c3c69be50b61f29ed33e5aae9c52 /minui/Android.mk
parentam bb01d0c1: add NextCheckKeyIsLong() and EnqueueKey() methods (diff)
parentadd optional overscan compensation to recovery graphics (diff)
downloadandroid_bootable_recovery-f7d423403d0aed6b8488559185e2246257abc58b.tar
android_bootable_recovery-f7d423403d0aed6b8488559185e2246257abc58b.tar.gz
android_bootable_recovery-f7d423403d0aed6b8488559185e2246257abc58b.tar.bz2
android_bootable_recovery-f7d423403d0aed6b8488559185e2246257abc58b.tar.lz
android_bootable_recovery-f7d423403d0aed6b8488559185e2246257abc58b.tar.xz
android_bootable_recovery-f7d423403d0aed6b8488559185e2246257abc58b.tar.zst
android_bootable_recovery-f7d423403d0aed6b8488559185e2246257abc58b.zip
Diffstat (limited to 'minui/Android.mk')
-rw-r--r--minui/Android.mk6
1 files changed, 6 insertions, 0 deletions
diff --git a/minui/Android.mk b/minui/Android.mk
index 285ac62bf..43e0ad33b 100644
--- a/minui/Android.mk
+++ b/minui/Android.mk
@@ -20,4 +20,10 @@ 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)