blob: a48980fe824741be7281f2269d086bee429d1293 [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
Joe Onorato6396e702012-05-31 23:21:46 -070017include $(CLEAR_VARS)
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080018
Tao Bao0d4e0022015-07-19 08:40:37 -070019LOCAL_SRC_FILES := fuse_sideload.cpp
Tao Bao80e46e02015-06-03 10:49:29 -070020LOCAL_CLANG := true
Doug Zongker18a78e02014-07-10 07:31:46 -070021LOCAL_CFLAGS := -O2 -g -DADB_HOST=0 -Wall -Wno-unused-parameter
22LOCAL_CFLAGS += -D_XOPEN_SOURCE -D_GNU_SOURCE
23
24LOCAL_MODULE := libfusesideload
25
26LOCAL_STATIC_LIBRARIES := libcutils libc libmincrypt
27include $(BUILD_STATIC_LIBRARY)
28
29include $(CLEAR_VARS)
30
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080031LOCAL_SRC_FILES := \
Doug Zongker945fc682014-07-10 10:50:39 -070032 adb_install.cpp \
Elliott Hughes9e7ae8a2015-04-09 13:40:31 -070033 asn1_decoder.cpp \
34 bootloader.cpp \
35 device.cpp \
Tao Bao0d4e0022015-07-19 08:40:37 -070036 fuse_sdcard_provider.cpp \
Elliott Hughes9e7ae8a2015-04-09 13:40:31 -070037 install.cpp \
38 recovery.cpp \
39 roots.cpp \
40 screen_ui.cpp \
41 ui.cpp \
42 verifier.cpp \
Tao Bao337db142015-08-20 14:52:57 -070043 wear_ui.cpp \
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080044
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080045LOCAL_MODULE := recovery
46
47LOCAL_FORCE_STATIC_EXECUTABLE := true
48
Tao Baof6835122015-10-27 21:53:18 -070049ifeq ($(TARGET_USERIMAGES_USE_F2FS),true)
Ji-Hwan Leeb9afc2b2014-06-19 02:02:50 +090050ifeq ($(HOST_OS),linux)
51LOCAL_REQUIRED_MODULES := mkfs.f2fs
52endif
Tao Baof6835122015-10-27 21:53:18 -070053endif
JP Abgrall37aedb32014-06-16 19:07:39 -070054
Doug Zongkere08991e2010-02-02 13:09:52 -080055RECOVERY_API_VERSION := 3
Ken Sumrallf35d1ce2013-02-13 12:59:35 -080056RECOVERY_FSTAB_VERSION := 2
Doug Zongkerfb2e3af2009-06-17 17:29:40 -070057LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION)
Doug Zongker0d32f252014-02-13 15:07:56 -080058LOCAL_CFLAGS += -Wno-unused-parameter
Tao Bao80e46e02015-06-03 10:49:29 -070059LOCAL_CLANG := true
Doug Zongkerfb2e3af2009-06-17 17:29:40 -070060
Dan Albert1ddd3502015-02-18 15:58:15 -080061LOCAL_C_INCLUDES += \
62 system/vold \
63 system/extras/ext4_utils \
64 system/core/adb \
Adrien Grassein3cd669f2014-11-06 14:53:50 +010065
Joe Onorato6396e702012-05-31 23:21:46 -070066LOCAL_STATIC_LIBRARIES := \
67 libext4_utils_static \
Joe Onorato4eeb3792012-07-23 19:14:30 -070068 libsparse_static \
Joe Onorato6396e702012-05-31 23:21:46 -070069 libminzip \
70 libz \
71 libmtdutils \
72 libmincrypt \
73 libminadbd \
Doug Zongker18a78e02014-07-10 07:31:46 -070074 libfusesideload \
Joe Onorato6396e702012-05-31 23:21:46 -070075 libminui \
Joe Onorato6396e702012-05-31 23:21:46 -070076 libpng \
Ken Sumrallf35d1ce2013-02-13 12:59:35 -080077 libfs_mgr \
Elliott Hughes8fd86d72015-04-13 14:36:02 -070078 libbase \
Joe Onorato6396e702012-05-31 23:21:46 -070079 libcutils \
Ying Wang4e214822013-04-09 21:41:29 -070080 liblog \
Kenny Root7eb75672012-10-16 10:47:27 -070081 libselinux \
Stephen Hines91eb7212012-08-23 15:20:16 -070082 libm \
Joe Onorato6396e702012-05-31 23:21:46 -070083 libc
Doug Zongker49c73a72010-06-29 17:36:28 -070084
85ifeq ($(TARGET_USERIMAGES_USE_EXT4), true)
Joe Onorato6396e702012-05-31 23:21:46 -070086 LOCAL_CFLAGS += -DUSE_EXT4
Adrien Grassein3cd669f2014-11-06 14:53:50 +010087 LOCAL_C_INCLUDES += system/extras/ext4_utils
Joe Onorato6396e702012-05-31 23:21:46 -070088 LOCAL_STATIC_LIBRARIES += libext4_utils_static libz
Doug Zongker49c73a72010-06-29 17:36:28 -070089endif
90
Ying Wang5a50b1b2015-03-10 11:56:56 -070091LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/sbin
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080092
Doug Zongkerddd6a282009-06-09 12:22:33 -070093ifeq ($(TARGET_RECOVERY_UI_LIB),)
Doug Zongkerdaefc1d2011-10-31 09:34:15 -070094 LOCAL_SRC_FILES += default_device.cpp
Doug Zongkerddd6a282009-06-09 12:22:33 -070095else
96 LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_UI_LIB)
97endif
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080098
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080099include $(BUILD_EXECUTABLE)
100
Kenny Root7a4adb52013-10-09 10:14:35 -0700101# All the APIs for testing
102include $(CLEAR_VARS)
Tao Bao80e46e02015-06-03 10:49:29 -0700103LOCAL_CLANG := true
Kenny Root7a4adb52013-10-09 10:14:35 -0700104LOCAL_MODULE := libverifier
105LOCAL_MODULE_TAGS := tests
106LOCAL_SRC_FILES := \
Kenny Root7a4adb52013-10-09 10:14:35 -0700107 asn1_decoder.cpp \
Joe Onorato6396e702012-05-31 23:21:46 -0700108 verifier.cpp \
109 ui.cpp
Jed Estep43291862016-02-03 17:02:09 -0800110include $(BUILD_STATIC_LIBRARY)
Doug Zongker73ae31c2009-12-09 17:01:45 -0800111
Joe Onorato6396e702012-05-31 23:21:46 -0700112include $(LOCAL_PATH)/minui/Android.mk \
Joe Onorato6396e702012-05-31 23:21:46 -0700113 $(LOCAL_PATH)/minzip/Android.mk \
114 $(LOCAL_PATH)/minadbd/Android.mk \
115 $(LOCAL_PATH)/mtdutils/Android.mk \
Kenny Root7a4adb52013-10-09 10:14:35 -0700116 $(LOCAL_PATH)/tests/Android.mk \
Joe Onorato6396e702012-05-31 23:21:46 -0700117 $(LOCAL_PATH)/tools/Android.mk \
118 $(LOCAL_PATH)/edify/Android.mk \
Doug Zongker76adfc52014-01-13 10:04:25 -0800119 $(LOCAL_PATH)/uncrypt/Android.mk \
Joe Onorato6396e702012-05-31 23:21:46 -0700120 $(LOCAL_PATH)/updater/Android.mk \
Tao Bao7197ee02015-12-05 21:21:27 -0800121 $(LOCAL_PATH)/update_verifier/Android.mk \
Joe Onorato6396e702012-05-31 23:21:46 -0700122 $(LOCAL_PATH)/applypatch/Android.mk