blob: b8ef63e99fd4a9f841d533b50321092e1f594f53 [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
17
18include $(CLEAR_VARS)
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080019
Doug Zongker18a78e02014-07-10 07:31:46 -070020LOCAL_SRC_FILES := fuse_sideload.c
21
22LOCAL_CFLAGS := -O2 -g -DADB_HOST=0 -Wall -Wno-unused-parameter
23LOCAL_CFLAGS += -D_XOPEN_SOURCE -D_GNU_SOURCE
24
25LOCAL_MODULE := libfusesideload
26
27LOCAL_STATIC_LIBRARIES := libcutils libc libmincrypt
28include $(BUILD_STATIC_LIBRARY)
29
30include $(CLEAR_VARS)
31
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080032LOCAL_SRC_FILES := \
Doug Zongker28ce47c2011-10-28 10:33:05 -070033 recovery.cpp \
34 bootloader.cpp \
35 install.cpp \
36 roots.cpp \
Doug Zongker32a0a472011-11-01 11:00:20 -070037 ui.cpp \
Doug Zongker211aebc2011-10-28 15:13:10 -070038 screen_ui.cpp \
Kenny Root7a4adb52013-10-09 10:14:35 -070039 asn1_decoder.cpp \
Doug Zongker9270a202012-01-09 15:16:13 -080040 verifier.cpp \
Doug Zongker945fc682014-07-10 10:50:39 -070041 adb_install.cpp \
42 fuse_sdcard_provider.c
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080043
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080044LOCAL_MODULE := recovery
45
46LOCAL_FORCE_STATIC_EXECUTABLE := true
47
Ji-Hwan Leeb9afc2b2014-06-19 02:02:50 +090048ifeq ($(HOST_OS),linux)
49LOCAL_REQUIRED_MODULES := mkfs.f2fs
50endif
JP Abgrall37aedb32014-06-16 19:07:39 -070051
Doug Zongkere08991e2010-02-02 13:09:52 -080052RECOVERY_API_VERSION := 3
Ken Sumrallf35d1ce2013-02-13 12:59:35 -080053RECOVERY_FSTAB_VERSION := 2
Doug Zongkerfb2e3af2009-06-17 17:29:40 -070054LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION)
Doug Zongker0d32f252014-02-13 15:07:56 -080055LOCAL_CFLAGS += -Wno-unused-parameter
Doug Zongkerfb2e3af2009-06-17 17:29:40 -070056
Dan Albert1ddd3502015-02-18 15:58:15 -080057LOCAL_C_INCLUDES += \
58 system/vold \
59 system/extras/ext4_utils \
60 system/core/adb \
Adrien Grassein3cd669f2014-11-06 14:53:50 +010061
Joe Onorato6396e702012-05-31 23:21:46 -070062LOCAL_STATIC_LIBRARIES := \
63 libext4_utils_static \
Joe Onorato4eeb3792012-07-23 19:14:30 -070064 libsparse_static \
Joe Onorato6396e702012-05-31 23:21:46 -070065 libminzip \
66 libz \
67 libmtdutils \
68 libmincrypt \
69 libminadbd \
Dan Albert8f1bfea2014-11-25 10:55:50 -080070 libadbd \
Doug Zongker18a78e02014-07-10 07:31:46 -070071 libfusesideload \
Joe Onorato6396e702012-05-31 23:21:46 -070072 libminui \
Joe Onorato6396e702012-05-31 23:21:46 -070073 libpng \
Ken Sumrallf35d1ce2013-02-13 12:59:35 -080074 libfs_mgr \
Joe Onorato6396e702012-05-31 23:21:46 -070075 libcutils \
Ying Wang4e214822013-04-09 21:41:29 -070076 liblog \
Kenny Root7eb75672012-10-16 10:47:27 -070077 libselinux \
Joe Onorato6396e702012-05-31 23:21:46 -070078 libstdc++ \
Stephen Hines91eb7212012-08-23 15:20:16 -070079 libm \
Joe Onorato6396e702012-05-31 23:21:46 -070080 libc
Doug Zongker49c73a72010-06-29 17:36:28 -070081
82ifeq ($(TARGET_USERIMAGES_USE_EXT4), true)
Joe Onorato6396e702012-05-31 23:21:46 -070083 LOCAL_CFLAGS += -DUSE_EXT4
Adrien Grassein3cd669f2014-11-06 14:53:50 +010084 LOCAL_C_INCLUDES += system/extras/ext4_utils
Joe Onorato6396e702012-05-31 23:21:46 -070085 LOCAL_STATIC_LIBRARIES += libext4_utils_static libz
Doug Zongker49c73a72010-06-29 17:36:28 -070086endif
87
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080088# This binary is in the recovery ramdisk, which is otherwise a copy of root.
89# It gets copied there in config/Makefile. LOCAL_MODULE_TAGS suppresses
90# a (redundant) copy of the binary in /system/bin for user builds.
91# TODO: Build the ramdisk image in a more principled way.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080092LOCAL_MODULE_TAGS := eng
93
Doug Zongkerddd6a282009-06-09 12:22:33 -070094ifeq ($(TARGET_RECOVERY_UI_LIB),)
Doug Zongkerdaefc1d2011-10-31 09:34:15 -070095 LOCAL_SRC_FILES += default_device.cpp
Doug Zongkerddd6a282009-06-09 12:22:33 -070096else
97 LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_UI_LIB)
98endif
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080099
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800100include $(BUILD_EXECUTABLE)
101
Kenny Root7a4adb52013-10-09 10:14:35 -0700102# All the APIs for testing
103include $(CLEAR_VARS)
104LOCAL_MODULE := libverifier
105LOCAL_MODULE_TAGS := tests
106LOCAL_SRC_FILES := \
107 asn1_decoder.cpp
108include $(BUILD_STATIC_LIBRARY)
Joe Onorato6396e702012-05-31 23:21:46 -0700109
Doug Zongker73ae31c2009-12-09 17:01:45 -0800110include $(CLEAR_VARS)
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700111LOCAL_MODULE := verifier_test
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700112LOCAL_FORCE_STATIC_EXECUTABLE := true
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700113LOCAL_MODULE_TAGS := tests
Doug Zongker9e805d62013-09-04 13:44:38 -0700114LOCAL_CFLAGS += -DNO_RECOVERY_MOUNT
Doug Zongker0d32f252014-02-13 15:07:56 -0800115LOCAL_CFLAGS += -Wno-unused-parameter
Joe Onorato6396e702012-05-31 23:21:46 -0700116LOCAL_SRC_FILES := \
117 verifier_test.cpp \
Kenny Root7a4adb52013-10-09 10:14:35 -0700118 asn1_decoder.cpp \
Joe Onorato6396e702012-05-31 23:21:46 -0700119 verifier.cpp \
120 ui.cpp
121LOCAL_STATIC_LIBRARIES := \
122 libmincrypt \
123 libminui \
Doug Zongker99916f02014-01-13 14:16:58 -0800124 libminzip \
Joe Onorato6396e702012-05-31 23:21:46 -0700125 libcutils \
126 libstdc++ \
127 libc
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700128include $(BUILD_EXECUTABLE)
Doug Zongker73ae31c2009-12-09 17:01:45 -0800129
130
Joe Onorato6396e702012-05-31 23:21:46 -0700131include $(LOCAL_PATH)/minui/Android.mk \
Joe Onorato6396e702012-05-31 23:21:46 -0700132 $(LOCAL_PATH)/minzip/Android.mk \
133 $(LOCAL_PATH)/minadbd/Android.mk \
134 $(LOCAL_PATH)/mtdutils/Android.mk \
Kenny Root7a4adb52013-10-09 10:14:35 -0700135 $(LOCAL_PATH)/tests/Android.mk \
Joe Onorato6396e702012-05-31 23:21:46 -0700136 $(LOCAL_PATH)/tools/Android.mk \
137 $(LOCAL_PATH)/edify/Android.mk \
Doug Zongker76adfc52014-01-13 10:04:25 -0800138 $(LOCAL_PATH)/uncrypt/Android.mk \
Joe Onorato6396e702012-05-31 23:21:46 -0700139 $(LOCAL_PATH)/updater/Android.mk \
140 $(LOCAL_PATH)/applypatch/Android.mk