summaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2017-06-24 00:01:44 +0200
committerandroid-build-merger <android-build-merger@google.com>2017-06-24 00:01:44 +0200
commit10ffcd12e9f39bc6470e152bb3e6f405e15402ec (patch)
tree48ec070dba779f80eff67e97ffb39f39e463c629 /Android.mk
parentMerge "Remove the obsolete package_extract_dir() test" am: e916cca8a9 am: af913974a5 (diff)
parentMerge changes Icb6f7466,Ibf6238c9 am: eef231567c (diff)
downloadandroid_bootable_recovery-10ffcd12e9f39bc6470e152bb3e6f405e15402ec.tar
android_bootable_recovery-10ffcd12e9f39bc6470e152bb3e6f405e15402ec.tar.gz
android_bootable_recovery-10ffcd12e9f39bc6470e152bb3e6f405e15402ec.tar.bz2
android_bootable_recovery-10ffcd12e9f39bc6470e152bb3e6f405e15402ec.tar.lz
android_bootable_recovery-10ffcd12e9f39bc6470e152bb3e6f405e15402ec.tar.xz
android_bootable_recovery-10ffcd12e9f39bc6470e152bb3e6f405e15402ec.tar.zst
android_bootable_recovery-10ffcd12e9f39bc6470e152bb3e6f405e15402ec.zip
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk12
1 files changed, 12 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
index 5348e365e..5ce9d335c 100644
--- a/Android.mk
+++ b/Android.mk
@@ -93,6 +93,18 @@ endif
LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION)
LOCAL_CFLAGS += -Wno-unused-parameter -Werror
+ifneq ($(TARGET_RECOVERY_UI_MARGIN_HEIGHT),)
+LOCAL_CFLAGS += -DRECOVERY_UI_MARGIN_HEIGHT=$(TARGET_RECOVERY_UI_MARGIN_HEIGHT)
+else
+LOCAL_CFLAGS += -DRECOVERY_UI_MARGIN_HEIGHT=0
+endif
+
+ifneq ($(TARGET_RECOVERY_UI_MARGIN_WIDTH),)
+LOCAL_CFLAGS += -DRECOVERY_UI_MARGIN_WIDTH=$(TARGET_RECOVERY_UI_MARGIN_WIDTH)
+else
+LOCAL_CFLAGS += -DRECOVERY_UI_MARGIN_WIDTH=0
+endif
+
LOCAL_C_INCLUDES += \
system/vold \