blob: 045824df61e076aaadf8ccf01a78f2fa9e944126 [file] [log] [blame]
Dees_Troy51a0e822012-09-05 15:24:24 -04001LOCAL_PATH := $(call my-dir)
2include $(CLEAR_VARS)
3
Motorhead1991c7f2e122014-06-12 15:57:36 -07004LOCAL_CFLAGS := -fno-strict-aliasing
5
Dees_Troy51a0e822012-09-05 15:24:24 -04006LOCAL_SRC_FILES := \
7 gui.cpp \
8 resources.cpp \
9 pages.cpp \
10 text.cpp \
11 image.cpp \
12 action.cpp \
13 console.cpp \
14 fill.cpp \
15 button.cpp \
16 checkbox.cpp \
17 fileselector.cpp \
18 progressbar.cpp \
19 animation.cpp \
Vojtech Bocekede51c52014-02-07 23:58:09 +010020 object.cpp \
Dees_Troy51a0e822012-09-05 15:24:24 -040021 slider.cpp \
Vojtech Bocek85932342013-04-01 22:11:33 +020022 slidervalue.cpp \
Dees_Troy51a0e822012-09-05 15:24:24 -040023 listbox.cpp \
24 keyboard.cpp \
bigbiff bigbiff8a68c312013-02-10 14:28:30 -050025 input.cpp \
26 blanktimer.cpp \
Vojtech Bocek1fc30fc2014-01-29 18:37:19 +010027 partitionlist.cpp \
Ethan Yonker0a3a98f2015-02-05 00:48:28 +010028 mousecursor.cpp \
Vojtech Bocek7e11ac52015-03-05 23:21:49 +010029 scrolllist.cpp \
Ethan Yonker44925ad2015-07-22 12:33:59 -050030 patternpassword.cpp \
Ethan Yonker74db1572015-10-28 12:44:49 -050031 textbox.cpp \
that1964d192016-01-07 00:41:03 +010032 terminal.cpp \
Ethan Yonker74db1572015-10-28 12:44:49 -050033 twmsg.cpp
Dees_Troy51a0e822012-09-05 15:24:24 -040034
35ifneq ($(TWRP_CUSTOM_KEYBOARD),)
Ethan Yonker591b9202015-03-11 11:17:15 -050036 LOCAL_SRC_FILES += $(TWRP_CUSTOM_KEYBOARD)
Dees_Troy51a0e822012-09-05 15:24:24 -040037else
Ethan Yonker591b9202015-03-11 11:17:15 -050038 LOCAL_SRC_FILES += hardwarekeyboard.cpp
Dees_Troy51a0e822012-09-05 15:24:24 -040039endif
40
Ethan Yonker4b94cfd2014-12-11 10:00:45 -060041LOCAL_SHARED_LIBRARIES += libminuitwrp libc libstdc++ libminzip libaosprecovery
Dees_Troy2673cec2013-04-02 20:22:16 +000042LOCAL_MODULE := libguitwrp
Dees_Troy51a0e822012-09-05 15:24:24 -040043
Dees_Troy51a0e822012-09-05 15:24:24 -040044#TWRP_EVENT_LOGGING := true
45ifeq ($(TWRP_EVENT_LOGGING), true)
Ethan Yonker30fa3352015-03-09 13:57:21 -050046 LOCAL_CFLAGS += -D_EVENT_LOGGING
47endif
48ifneq ($(TW_USE_KEY_CODE_TOUCH_SYNC),)
49 LOCAL_CFLAGS += -DTW_USE_KEY_CODE_TOUCH_SYNC=$(TW_USE_KEY_CODE_TOUCH_SYNC)
Dees_Troy51a0e822012-09-05 15:24:24 -040050endif
51
bigbiff bigbiff87940362013-03-09 09:58:50 -050052ifneq ($(TW_NO_SCREEN_BLANK),)
Ethan Yonker591b9202015-03-11 11:17:15 -050053 LOCAL_CFLAGS += -DTW_NO_SCREEN_BLANK
bigbiff bigbiff87940362013-03-09 09:58:50 -050054endif
Ricardo Gomezc9ecd442013-07-05 16:13:52 -070055ifneq ($(TW_NO_SCREEN_TIMEOUT),)
Ethan Yonker591b9202015-03-11 11:17:15 -050056 LOCAL_CFLAGS += -DTW_NO_SCREEN_TIMEOUT
Ricardo Gomezc9ecd442013-07-05 16:13:52 -070057endif
Dees Troyb7ae0982013-09-10 20:47:35 +000058ifeq ($(HAVE_SELINUX), true)
Ethan Yonker30fa3352015-03-09 13:57:21 -050059 LOCAL_CFLAGS += -DHAVE_SELINUX
Dees Troyb7ae0982013-09-10 20:47:35 +000060endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040061ifeq ($(TW_OEM_BUILD), true)
Ethan Yonker83e82572014-04-04 10:59:28 -050062 LOCAL_CFLAGS += -DTW_OEM_BUILD
63endif
Ethan Yonker751a85e2014-12-12 16:59:10 -060064ifneq ($(TW_X_OFFSET),)
Ethan Yonker591b9202015-03-11 11:17:15 -050065 LOCAL_CFLAGS += -DTW_X_OFFSET=$(TW_X_OFFSET)
Ethan Yonker751a85e2014-12-12 16:59:10 -060066endif
67ifneq ($(TW_Y_OFFSET),)
Ethan Yonker591b9202015-03-11 11:17:15 -050068 LOCAL_CFLAGS += -DTW_Y_OFFSET=$(TW_Y_OFFSET)
Ethan Yonker751a85e2014-12-12 16:59:10 -060069endif
Ethan Yonker63e414f2015-02-06 15:44:39 -060070ifeq ($(TW_ROUND_SCREEN), true)
Ethan Yonker591b9202015-03-11 11:17:15 -050071 LOCAL_CFLAGS += -DTW_ROUND_SCREEN
bigbiff bigbiff163d4742013-11-16 13:25:27 -050072endif
73
Xing0af1ac12015-11-27 11:19:37 -080074LOCAL_C_INCLUDES += bionic system/core/libpixelflinger/include
75ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23; echo $$?),0)
76 LOCAL_C_INCLUDES += external/stlport/stlport
77endif
78
Dees Troy3454ade2015-01-20 19:21:04 +000079LOCAL_CFLAGS += -DTWRES=\"$(TWRES_PATH)\"
Dees_Troy51a0e822012-09-05 15:24:24 -040080
81include $(BUILD_STATIC_LIBRARY)
82
83# Transfer in the resources for the device
84include $(CLEAR_VARS)
85LOCAL_MODULE := twrp
86LOCAL_MODULE_TAGS := eng
87LOCAL_MODULE_CLASS := RECOVERY_EXECUTABLES
Dees Troy3454ade2015-01-20 19:21:04 +000088LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)$(TWRES_PATH)
thatd16b2ce2015-07-27 20:39:19 +020089TWRP_RES := $(commands_recovery_local_path)/gui/devices/common/res/*
90# enable this to use new themes:
z31s1g28f0a922015-11-07 18:50:22 +010091TWRP_NEW_THEME := true
Dees_Troy51a0e822012-09-05 15:24:24 -040092
Ethan Yonker1ecaca72014-04-14 09:27:15 -050093ifeq ($(TW_CUSTOM_THEME),)
Ethan Yonker591b9202015-03-11 11:17:15 -050094 ifeq ($(TW_THEME),)
95 # This converts the old DEVICE_RESOLUTION flag to the new TW_THEME flag
96 PORTRAIT_MDPI := 320x480 480x800 480x854 540x960
97 PORTRAIT_HDPI := 720x1280 800x1280 1080x1920 1200x1920 1440x2560 1600x2560
98 WATCH_MDPI := 240x240 280x280 320x320
99 LANDSCAPE_MDPI := 800x480 1024x600 1024x768
100 LANDSCAPE_HDPI := 1280x800 1920x1200 2560x1600
101 ifneq ($(filter $(DEVICE_RESOLUTION), $(PORTRAIT_MDPI)),)
102 TW_THEME := portrait_mdpi
103 else ifneq ($(filter $(DEVICE_RESOLUTION), $(PORTRAIT_HDPI)),)
104 TW_THEME := portrait_hdpi
105 else ifneq ($(filter $(DEVICE_RESOLUTION), $(WATCH_MDPI)),)
106 TW_THEME := watch_mdpi
107 else ifneq ($(filter $(DEVICE_RESOLUTION), $(LANDSCAPE_MDPI)),)
108 TW_THEME := landscape_mdpi
109 else ifneq ($(filter $(DEVICE_RESOLUTION), $(LANDSCAPE_HDPI)),)
110 TW_THEME := landscape_hdpi
111 endif
112 endif
thatd16b2ce2015-07-27 20:39:19 +0200113ifeq ($(TWRP_NEW_THEME),true)
114 TWRP_THEME_LOC := $(commands_recovery_local_path)/gui/theme/$(TW_THEME)
115 TWRP_RES := $(commands_recovery_local_path)/gui/theme/common/fonts
Ethan Yonker74db1572015-10-28 12:44:49 -0500116 TWRP_RES += $(commands_recovery_local_path)/gui/theme/common/languages
thatd16b2ce2015-07-27 20:39:19 +0200117 TWRP_RES += $(commands_recovery_local_path)/gui/theme/common/$(word 1,$(subst _, ,$(TW_THEME))).xml
Xueferb6e5fd92016-01-27 00:01:44 +0800118ifeq ($(TW_EXTRA_LANGUAGES),true)
119 TWRP_RES += $(commands_recovery_local_path)/gui/theme/extra-languages/fonts
120 TWRP_RES += $(commands_recovery_local_path)/gui/theme/extra-languages/languages
121endif
thatd16b2ce2015-07-27 20:39:19 +0200122# for future copying of used include xmls and fonts:
123# UI_XML := $(TWRP_THEME_LOC)/ui.xml
124# TWRP_INCLUDE_XMLS := $(shell xmllint --xpath '/recovery/include/xmlfile/@name' $(UI_XML)|sed -n 's/[^\"]*\"\([^\"]*\)\"[^\"]*/\1\n/gp'|sort|uniq)
Ethan Yonker88037f42015-10-04 22:09:08 -0500125# TWRP_FONTS_TTF := $(shell xmllint --xpath '/recovery/resources/font/@filename' $(UI_XML)|sed -n 's/[^\"]*\"\([^\"]*\)\"[^\"]*/\1\n/gp'|sort|uniq)niq)
thatd16b2ce2015-07-27 20:39:19 +0200126ifeq ($(wildcard $(TWRP_THEME_LOC)/ui.xml),)
127 $(warning ****************************************************************************)
128 $(warning * TW_THEME is not valid: '$(TW_THEME)')
129 $(warning * Please choose an appropriate TW_THEME or create a new one for your device.)
130 $(warning * Available themes:)
131 $(warning * $(notdir $(wildcard $(commands_recovery_local_path)/gui/theme/*_*)))
132 $(warning ****************************************************************************)
133 $(error stopping)
134endif
135else
136 TWRP_RES += $(commands_recovery_local_path)/gui/devices/$(word 1,$(subst _, ,$(TW_THEME)))/res/*
Ethan Yonker591b9202015-03-11 11:17:15 -0500137 ifeq ($(TW_THEME), portrait_mdpi)
138 TWRP_THEME_LOC := $(commands_recovery_local_path)/gui/devices/480x800/res
Ethan Yonker591b9202015-03-11 11:17:15 -0500139 else ifeq ($(TW_THEME), portrait_hdpi)
140 TWRP_THEME_LOC := $(commands_recovery_local_path)/gui/devices/1080x1920/res
Ethan Yonker591b9202015-03-11 11:17:15 -0500141 else ifeq ($(TW_THEME), watch_mdpi)
142 TWRP_THEME_LOC := $(commands_recovery_local_path)/gui/devices/320x320/res
Ethan Yonker591b9202015-03-11 11:17:15 -0500143 else ifeq ($(TW_THEME), landscape_mdpi)
144 TWRP_THEME_LOC := $(commands_recovery_local_path)/gui/devices/800x480/res
Ethan Yonker591b9202015-03-11 11:17:15 -0500145 else ifeq ($(TW_THEME), landscape_hdpi)
146 TWRP_THEME_LOC := $(commands_recovery_local_path)/gui/devices/1920x1200/res
Ethan Yonker591b9202015-03-11 11:17:15 -0500147 else
148 $(warning ****************************************************************************)
149 $(warning * TW_THEME ($(TW_THEME)) is not valid.)
150 $(warning * Please choose an appropriate TW_THEME or create a new one for your device.)
151 $(warning * Valid options are portrait_mdpi portrait_hdpi watch_mdpi)
152 $(warning * landscape_mdpi landscape_hdpi)
153 $(warning ****************************************************************************)
154 $(error stopping)
155 endif
thatd16b2ce2015-07-27 20:39:19 +0200156endif
Ethan Yonker1ecaca72014-04-14 09:27:15 -0500157else
Ethan Yonker591b9202015-03-11 11:17:15 -0500158 TWRP_THEME_LOC := $(TW_CUSTOM_THEME)
Ethan Yonker1ecaca72014-04-14 09:27:15 -0500159endif
Xueferebc4cfa2016-01-24 13:13:36 +0800160TWRP_RES += $(TW_ADDITIONAL_RES)
Vojtech Bocek76ee9032014-09-07 15:01:56 +0200161
Dees_Troy51a0e822012-09-05 15:24:24 -0400162TWRP_RES_GEN := $(intermediates)/twrp
Ethan Yonker5c933692014-04-04 11:26:32 -0500163ifneq ($(TW_USE_TOOLBOX), true)
Ethan Yonker591b9202015-03-11 11:17:15 -0500164 TWRP_SH_TARGET := /sbin/busybox
Ethan Yonker5c933692014-04-04 11:26:32 -0500165else
Ethan Yonker591b9202015-03-11 11:17:15 -0500166 TWRP_SH_TARGET := /sbin/mksh
Ethan Yonker0c9d0492014-04-14 09:10:05 -0500167endif
168
Ethan Yonker5c933692014-04-04 11:26:32 -0500169$(TWRP_RES_GEN):
Dees Troy3454ade2015-01-20 19:21:04 +0000170 mkdir -p $(TARGET_RECOVERY_ROOT_OUT)$(TWRES_PATH)
thatd16b2ce2015-07-27 20:39:19 +0200171 cp -fr $(TWRP_RES) $(TARGET_RECOVERY_ROOT_OUT)$(TWRES_PATH)
Dees Troy3454ade2015-01-20 19:21:04 +0000172 cp -fr $(TWRP_THEME_LOC)/* $(TARGET_RECOVERY_ROOT_OUT)$(TWRES_PATH)
Ethan Yonker5c933692014-04-04 11:26:32 -0500173 mkdir -p $(TARGET_RECOVERY_ROOT_OUT)/sbin/
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600174ifneq ($(TW_USE_TOOLBOX), true)
Ethan Yonker0c9d0492014-04-14 09:10:05 -0500175 ln -sf $(TWRP_SH_TARGET) $(TARGET_RECOVERY_ROOT_OUT)/sbin/sh
Ethan Yonkerbcc502c2014-11-10 11:22:10 -0600176endif
Ethan Yonker5c933692014-04-04 11:26:32 -0500177 ln -sf /sbin/pigz $(TARGET_RECOVERY_ROOT_OUT)/sbin/gzip
178 ln -sf /sbin/unpigz $(TARGET_RECOVERY_ROOT_OUT)/sbin/gunzip
Ethan Yonker0c9d0492014-04-14 09:10:05 -0500179
Dees_Troy51a0e822012-09-05 15:24:24 -0400180
181LOCAL_GENERATED_SOURCES := $(TWRP_RES_GEN)
182LOCAL_SRC_FILES := twrp $(TWRP_RES_GEN)
Dees_Troy7d15c252012-09-05 20:47:21 -0400183include $(BUILD_PREBUILT)