blob: 41eff4ee6a30b1cb9818c0b3d992767ff0375f72 [file] [log] [blame]
Joe Onorato6396e702012-05-31 23:21:46 -07001# Copyright (C) 2007 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080014
Joe Onorato6396e702012-05-31 23:21:46 -070015LOCAL_PATH := $(call my-dir)
16
Tao Baod80a9982016-03-03 11:43:47 -080017# libfusesideload (static library)
18# ===============================
Joe Onorato6396e702012-05-31 23:21:46 -070019include $(CLEAR_VARS)
Tao Bao0d4e0022015-07-19 08:40:37 -070020LOCAL_SRC_FILES := fuse_sideload.cpp
Tao Bao80e46e02015-06-03 10:49:29 -070021LOCAL_CLANG := true
Elliott Hughes63a31922016-06-09 17:41:22 -070022LOCAL_CFLAGS := -O2 -g -DADB_HOST=0 -Wall -Wno-unused-parameter -Werror
Doug Zongker18a78e02014-07-10 07:31:46 -070023LOCAL_CFLAGS += -D_XOPEN_SOURCE -D_GNU_SOURCE
Doug Zongker18a78e02014-07-10 07:31:46 -070024LOCAL_MODULE := libfusesideload
Josh Gao073164f2016-08-05 15:59:05 -070025LOCAL_STATIC_LIBRARIES := libcutils libc libcrypto
Doug Zongker18a78e02014-07-10 07:31:46 -070026include $(BUILD_STATIC_LIBRARY)
27
Elliott Hughes63a31922016-06-09 17:41:22 -070028# libmounts (static library)
29# ===============================
30include $(CLEAR_VARS)
31LOCAL_SRC_FILES := mounts.cpp
32LOCAL_CLANG := true
33LOCAL_CFLAGS := -Wall -Wno-unused-parameter -Werror
34LOCAL_MODULE := libmounts
35include $(BUILD_STATIC_LIBRARY)
36
Tao Baod80a9982016-03-03 11:43:47 -080037# recovery (static executable)
38# ===============================
Doug Zongker18a78e02014-07-10 07:31:46 -070039include $(CLEAR_VARS)
40
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080041LOCAL_SRC_FILES := \
Doug Zongker945fc682014-07-10 10:50:39 -070042 adb_install.cpp \
Elliott Hughes9e7ae8a2015-04-09 13:40:31 -070043 asn1_decoder.cpp \
44 bootloader.cpp \
45 device.cpp \
Tao Bao0d4e0022015-07-19 08:40:37 -070046 fuse_sdcard_provider.cpp \
Elliott Hughes9e7ae8a2015-04-09 13:40:31 -070047 install.cpp \
48 recovery.cpp \
49 roots.cpp \
50 screen_ui.cpp \
51 ui.cpp \
52 verifier.cpp \
Tao Bao337db142015-08-20 14:52:57 -070053 wear_ui.cpp \
Prashant Malani9020e0f2016-03-11 11:57:10 -080054 wear_touch.cpp \
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080055
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080056LOCAL_MODULE := recovery
57
58LOCAL_FORCE_STATIC_EXECUTABLE := true
59
Tao Baof6835122015-10-27 21:53:18 -070060ifeq ($(TARGET_USERIMAGES_USE_F2FS),true)
Ji-Hwan Leeb9afc2b2014-06-19 02:02:50 +090061ifeq ($(HOST_OS),linux)
62LOCAL_REQUIRED_MODULES := mkfs.f2fs
63endif
Tao Baof6835122015-10-27 21:53:18 -070064endif
JP Abgrall37aedb32014-06-16 19:07:39 -070065
Doug Zongkere08991e2010-02-02 13:09:52 -080066RECOVERY_API_VERSION := 3
Ken Sumrallf35d1ce2013-02-13 12:59:35 -080067RECOVERY_FSTAB_VERSION := 2
Doug Zongkerfb2e3af2009-06-17 17:29:40 -070068LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION)
Doug Zongker0d32f252014-02-13 15:07:56 -080069LOCAL_CFLAGS += -Wno-unused-parameter
Tao Bao80e46e02015-06-03 10:49:29 -070070LOCAL_CLANG := true
Doug Zongkerfb2e3af2009-06-17 17:29:40 -070071
Dan Albert1ddd3502015-02-18 15:58:15 -080072LOCAL_C_INCLUDES += \
73 system/vold \
74 system/extras/ext4_utils \
75 system/core/adb \
Adrien Grassein3cd669f2014-11-06 14:53:50 +010076
Joe Onorato6396e702012-05-31 23:21:46 -070077LOCAL_STATIC_LIBRARIES := \
Yabin Cui53e7a062016-02-17 12:21:52 -080078 libbatterymonitor \
Joe Onorato6396e702012-05-31 23:21:46 -070079 libext4_utils_static \
Joe Onorato4eeb3792012-07-23 19:14:30 -070080 libsparse_static \
Joe Onorato6396e702012-05-31 23:21:46 -070081 libminzip \
Elliott Hughes63a31922016-06-09 17:41:22 -070082 libmounts \
Joe Onorato6396e702012-05-31 23:21:46 -070083 libz \
Joe Onorato6396e702012-05-31 23:21:46 -070084 libminadbd \
Doug Zongker18a78e02014-07-10 07:31:46 -070085 libfusesideload \
Joe Onorato6396e702012-05-31 23:21:46 -070086 libminui \
Joe Onorato6396e702012-05-31 23:21:46 -070087 libpng \
Ken Sumrallf35d1ce2013-02-13 12:59:35 -080088 libfs_mgr \
Josh Gao073164f2016-08-05 15:59:05 -070089 libcrypto_utils \
90 libcrypto \
Elliott Hughes8fd86d72015-04-13 14:36:02 -070091 libbase \
Joe Onorato6396e702012-05-31 23:21:46 -070092 libcutils \
Yabin Cui53e7a062016-02-17 12:21:52 -080093 libutils \
Ying Wang4e214822013-04-09 21:41:29 -070094 liblog \
Kenny Root7eb75672012-10-16 10:47:27 -070095 libselinux \
Stephen Hines91eb7212012-08-23 15:20:16 -070096 libm \
Joe Onorato6396e702012-05-31 23:21:46 -070097 libc
Doug Zongker49c73a72010-06-29 17:36:28 -070098
Yabin Cui53e7a062016-02-17 12:21:52 -080099LOCAL_HAL_STATIC_LIBRARIES := libhealthd
100
Elliott Hughes63a31922016-06-09 17:41:22 -0700101LOCAL_C_INCLUDES += system/extras/ext4_utils
102LOCAL_STATIC_LIBRARIES += libext4_utils_static libz
Doug Zongker49c73a72010-06-29 17:36:28 -0700103
Ying Wang5a50b1b2015-03-10 11:56:56 -0700104LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/sbin
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800105
Doug Zongkerddd6a282009-06-09 12:22:33 -0700106ifeq ($(TARGET_RECOVERY_UI_LIB),)
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700107 LOCAL_SRC_FILES += default_device.cpp
Doug Zongkerddd6a282009-06-09 12:22:33 -0700108else
109 LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_UI_LIB)
110endif
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800111
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800112ifeq ($(BOARD_CACHEIMAGE_PARTITION_SIZE),)
113LOCAL_REQUIRED_MODULES := recovery-persist recovery-refresh
114endif
115
116include $(BUILD_EXECUTABLE)
117
118# recovery-persist (system partition dynamic executable run after /data mounts)
119# ===============================
120include $(CLEAR_VARS)
121LOCAL_SRC_FILES := recovery-persist.cpp
122LOCAL_MODULE := recovery-persist
123LOCAL_SHARED_LIBRARIES := liblog libbase
124LOCAL_CFLAGS := -Werror
125LOCAL_INIT_RC := recovery-persist.rc
126include $(BUILD_EXECUTABLE)
127
128# recovery-refresh (system partition dynamic executable run at init)
129# ===============================
130include $(CLEAR_VARS)
131LOCAL_SRC_FILES := recovery-refresh.cpp
132LOCAL_MODULE := recovery-refresh
133LOCAL_SHARED_LIBRARIES := liblog
134LOCAL_CFLAGS := -Werror
135LOCAL_INIT_RC := recovery-refresh.rc
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800136include $(BUILD_EXECUTABLE)
137
Tao Baod80a9982016-03-03 11:43:47 -0800138# libverifier (static library)
139# ===============================
Kenny Root7a4adb52013-10-09 10:14:35 -0700140include $(CLEAR_VARS)
Tao Bao80e46e02015-06-03 10:49:29 -0700141LOCAL_CLANG := true
Kenny Root7a4adb52013-10-09 10:14:35 -0700142LOCAL_MODULE := libverifier
143LOCAL_MODULE_TAGS := tests
144LOCAL_SRC_FILES := \
Kenny Root7a4adb52013-10-09 10:14:35 -0700145 asn1_decoder.cpp \
Joe Onorato6396e702012-05-31 23:21:46 -0700146 verifier.cpp \
147 ui.cpp
Josh Gao073164f2016-08-05 15:59:05 -0700148LOCAL_STATIC_LIBRARIES := libcrypto_utils libcrypto
Jed Estep43291862016-02-03 17:02:09 -0800149include $(BUILD_STATIC_LIBRARY)
Doug Zongker73ae31c2009-12-09 17:01:45 -0800150
Joe Onorato6396e702012-05-31 23:21:46 -0700151include $(LOCAL_PATH)/minui/Android.mk \
Joe Onorato6396e702012-05-31 23:21:46 -0700152 $(LOCAL_PATH)/minzip/Android.mk \
153 $(LOCAL_PATH)/minadbd/Android.mk \
Kenny Root7a4adb52013-10-09 10:14:35 -0700154 $(LOCAL_PATH)/tests/Android.mk \
Joe Onorato6396e702012-05-31 23:21:46 -0700155 $(LOCAL_PATH)/tools/Android.mk \
156 $(LOCAL_PATH)/edify/Android.mk \
Doug Zongker76adfc52014-01-13 10:04:25 -0800157 $(LOCAL_PATH)/uncrypt/Android.mk \
Jed Estepa7b9a462015-12-15 16:04:53 -0800158 $(LOCAL_PATH)/otafault/Android.mk \
Joe Onorato6396e702012-05-31 23:21:46 -0700159 $(LOCAL_PATH)/updater/Android.mk \
Tao Bao7197ee02015-12-05 21:21:27 -0800160 $(LOCAL_PATH)/update_verifier/Android.mk \
Joe Onorato6396e702012-05-31 23:21:46 -0700161 $(LOCAL_PATH)/applypatch/Android.mk