blob: baae3edf8a09ae571e1b22a4ba20ad38cb87aa72 [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 \
28 mousecursor.cpp
Dees_Troy51a0e822012-09-05 15:24:24 -040029
30ifneq ($(TWRP_CUSTOM_KEYBOARD),)
31 LOCAL_SRC_FILES += $(TWRP_CUSTOM_KEYBOARD)
32else
33 LOCAL_SRC_FILES += hardwarekeyboard.cpp
34endif
35
Dees_Troy94e2a462013-08-22 12:25:14 +000036LOCAL_SHARED_LIBRARIES += libminuitwrp libc libstdc++
Dees_Troy2673cec2013-04-02 20:22:16 +000037LOCAL_MODULE := libguitwrp
Dees_Troy51a0e822012-09-05 15:24:24 -040038
39# Use this flag to create a build that simulates threaded actions like installing zips, backups, restores, and wipes for theme testing
40#TWRP_SIMULATE_ACTIONS := true
41ifeq ($(TWRP_SIMULATE_ACTIONS), true)
42LOCAL_CFLAGS += -D_SIMULATE_ACTIONS
43endif
44
45#TWRP_EVENT_LOGGING := true
46ifeq ($(TWRP_EVENT_LOGGING), true)
47LOCAL_CFLAGS += -D_EVENT_LOGGING
48endif
49
bigbiff bigbiff87940362013-03-09 09:58:50 -050050ifneq ($(TW_NO_SCREEN_BLANK),)
51 LOCAL_CFLAGS += -DTW_NO_SCREEN_BLANK
52endif
Ricardo Gomezc9ecd442013-07-05 16:13:52 -070053ifneq ($(TW_NO_SCREEN_TIMEOUT),)
54 LOCAL_CFLAGS += -DTW_NO_SCREEN_TIMEOUT
55endif
Dees Troyb7ae0982013-09-10 20:47:35 +000056ifeq ($(HAVE_SELINUX), true)
57LOCAL_CFLAGS += -DHAVE_SELINUX
58endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040059ifeq ($(TW_OEM_BUILD), true)
Ethan Yonker83e82572014-04-04 10:59:28 -050060 LOCAL_CFLAGS += -DTW_OEM_BUILD
61endif
Vojtech Bocek76ee9032014-09-07 15:01:56 +020062ifeq ($(TW_DISABLE_TTF), true)
63 LOCAL_CFLAGS += -DTW_DISABLE_TTF
64endif
Dees_Troy51a0e822012-09-05 15:24:24 -040065
bigbiff bigbiff163d4742013-11-16 13:25:27 -050066ifeq ($(DEVICE_RESOLUTION),)
bigbiff bigbiff705f16e2013-11-16 09:59:44 -050067$(warning ********************************************************************************)
68$(warning * DEVICE_RESOLUTION is NOT SET in BoardConfig.mk )
69$(warning * Please see http://tinyw.in/nP7d for details )
70$(warning ********************************************************************************)
71$(error stopping)
72endif
73
Matt Mower55c75ca2014-08-31 11:30:15 -050074ifeq "$(wildcard $(commands_recovery_local_path)/gui/devices/$(DEVICE_RESOLUTION))" ""
bigbiff bigbiff163d4742013-11-16 13:25:27 -050075$(warning ********************************************************************************)
Matt Mower55c75ca2014-08-31 11:30:15 -050076$(warning * DEVICE_RESOLUTION ($(DEVICE_RESOLUTION)) does NOT EXIST in $(commands_recovery_local_path)/gui/devices )
bigbiff bigbiff163d4742013-11-16 13:25:27 -050077$(warning * Please choose an existing theme or create a new one for your device )
78$(warning ********************************************************************************)
79$(error stopping)
80endif
81
Dees_Troy51a0e822012-09-05 15:24:24 -040082LOCAL_C_INCLUDES += bionic external/stlport/stlport $(commands_recovery_local_path)/gui/devices/$(DEVICE_RESOLUTION)
83
84include $(BUILD_STATIC_LIBRARY)
85
86# Transfer in the resources for the device
87include $(CLEAR_VARS)
88LOCAL_MODULE := twrp
89LOCAL_MODULE_TAGS := eng
90LOCAL_MODULE_CLASS := RECOVERY_EXECUTABLES
91LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/res
Ethan Yonker1ecaca72014-04-14 09:27:15 -050092TWRP_RES_LOC := $(commands_recovery_local_path)/gui/devices/common/res
Ethan Yonker780cd392014-07-21 15:24:39 -050093TWRP_COMMON_XML := $(hide) echo "No common TWRP XML resources"
Dees_Troy51a0e822012-09-05 15:24:24 -040094
Ethan Yonker1ecaca72014-04-14 09:27:15 -050095ifeq ($(TW_CUSTOM_THEME),)
big biffba535e32014-07-29 00:44:47 +000096 PORTRAIT := 320x480 480x800 480x854 540x960 720x1280 800x1280 1080x1920 1200x1920 1440x2560 1600x2560
97 LANDSCAPE := 800x480 1024x600 1024x768 1280x800 1920x1200 2560x1600
Ethan Yonkerd9b72002014-07-30 08:46:28 -050098 WATCH := 240x240 280x280 320x320
Ethan Yonker1ecaca72014-04-14 09:27:15 -050099 TWRP_THEME_LOC := $(commands_recovery_local_path)/gui/devices/$(DEVICE_RESOLUTION)/res
big biffba535e32014-07-29 00:44:47 +0000100 ifneq ($(filter $(DEVICE_RESOLUTION), $(PORTRAIT)),)
Ethan Yonker780cd392014-07-21 15:24:39 -0500101 TWRP_COMMON_XML := cp -fr $(commands_recovery_local_path)/gui/devices/portrait/res/* $(TARGET_RECOVERY_ROOT_OUT)/res/
big biffba535e32014-07-29 00:44:47 +0000102 else ifneq ($(filter $(DEVICE_RESOLUTION), $(LANDSCAPE)),)
Ethan Yonker780cd392014-07-21 15:24:39 -0500103 TWRP_COMMON_XML := cp -fr $(commands_recovery_local_path)/gui/devices/landscape/res/* $(TARGET_RECOVERY_ROOT_OUT)/res/
Ethan Yonkerd9b72002014-07-30 08:46:28 -0500104 else ifneq ($(filter $(DEVICE_RESOLUTION), $(WATCH)),)
105 TWRP_COMMON_XML := cp -fr $(commands_recovery_local_path)/gui/devices/watch/res/* $(TARGET_RECOVERY_ROOT_OUT)/res/
Ethan Yonker780cd392014-07-21 15:24:39 -0500106 endif
Ethan Yonker1ecaca72014-04-14 09:27:15 -0500107else
108 TWRP_THEME_LOC := $(TW_CUSTOM_THEME)
109endif
Vojtech Bocek76ee9032014-09-07 15:01:56 +0200110
111ifeq ($(TW_DISABLE_TTF), true)
112 TWRP_REMOVE_FONT := rm -f $(TARGET_RECOVERY_ROOT_OUT)/res/fonts/*.ttf
113else
114 TWRP_REMOVE_FONT := rm -f $(TARGET_RECOVERY_ROOT_OUT)/res/fonts/*.dat
115endif
116
Dees_Troy51a0e822012-09-05 15:24:24 -0400117TWRP_RES_GEN := $(intermediates)/twrp
Ethan Yonker5c933692014-04-04 11:26:32 -0500118ifneq ($(TW_USE_TOOLBOX), true)
Ethan Yonker0c9d0492014-04-14 09:10:05 -0500119 TWRP_SH_TARGET := /sbin/busybox
Ethan Yonker5c933692014-04-04 11:26:32 -0500120else
Ethan Yonker0c9d0492014-04-14 09:10:05 -0500121 TWRP_SH_TARGET := /sbin/mksh
122endif
123
Ethan Yonker5c933692014-04-04 11:26:32 -0500124$(TWRP_RES_GEN):
125 mkdir -p $(TARGET_RECOVERY_ROOT_OUT)/res/
Ethan Yonker1ecaca72014-04-14 09:27:15 -0500126 cp -fr $(TWRP_RES_LOC)/* $(TARGET_RECOVERY_ROOT_OUT)/res/
127 cp -fr $(TWRP_THEME_LOC)/* $(TARGET_RECOVERY_ROOT_OUT)/res/
Ethan Yonker780cd392014-07-21 15:24:39 -0500128 $(TWRP_COMMON_XML)
Vojtech Bocek76ee9032014-09-07 15:01:56 +0200129 $(TWRP_REMOVE_FONT)
Ethan Yonker5c933692014-04-04 11:26:32 -0500130 mkdir -p $(TARGET_RECOVERY_ROOT_OUT)/sbin/
Ethan Yonker0c9d0492014-04-14 09:10:05 -0500131 ln -sf $(TWRP_SH_TARGET) $(TARGET_RECOVERY_ROOT_OUT)/sbin/sh
Ethan Yonker5c933692014-04-04 11:26:32 -0500132 ln -sf /sbin/pigz $(TARGET_RECOVERY_ROOT_OUT)/sbin/gzip
133 ln -sf /sbin/unpigz $(TARGET_RECOVERY_ROOT_OUT)/sbin/gunzip
Ethan Yonker0c9d0492014-04-14 09:10:05 -0500134
Dees_Troy51a0e822012-09-05 15:24:24 -0400135
136LOCAL_GENERATED_SOURCES := $(TWRP_RES_GEN)
137LOCAL_SRC_FILES := twrp $(TWRP_RES_GEN)
Dees_Troy7d15c252012-09-05 20:47:21 -0400138include $(BUILD_PREBUILT)