blob: cd368a0066d8e8a2105823b2d4ee041055be63ee [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
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080020LOCAL_SRC_FILES := \
Doug Zongker28ce47c2011-10-28 10:33:05 -070021 recovery.cpp \
22 bootloader.cpp \
23 install.cpp \
24 roots.cpp \
Doug Zongker32a0a472011-11-01 11:00:20 -070025 ui.cpp \
Doug Zongker211aebc2011-10-28 15:13:10 -070026 screen_ui.cpp \
Doug Zongker9270a202012-01-09 15:16:13 -080027 verifier.cpp \
28 adb_install.cpp
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080029
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080030LOCAL_MODULE := recovery
31
32LOCAL_FORCE_STATIC_EXECUTABLE := true
33
Doug Zongkere08991e2010-02-02 13:09:52 -080034RECOVERY_API_VERSION := 3
Doug Zongkerfb2e3af2009-06-17 17:29:40 -070035LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION)
36
Joe Onorato6396e702012-05-31 23:21:46 -070037LOCAL_STATIC_LIBRARIES := \
38 libext4_utils_static \
Joe Onorato4eeb3792012-07-23 19:14:30 -070039 libsparse_static \
Joe Onorato6396e702012-05-31 23:21:46 -070040 libminzip \
41 libz \
42 libmtdutils \
43 libmincrypt \
44 libminadbd \
45 libminui \
46 libpixelflinger_static \
47 libpng \
48 libcutils \
Kenny Root7eb75672012-10-16 10:47:27 -070049 libselinux \
Joe Onorato6396e702012-05-31 23:21:46 -070050 libstdc++ \
51 libc
Doug Zongker49c73a72010-06-29 17:36:28 -070052
53ifeq ($(TARGET_USERIMAGES_USE_EXT4), true)
Joe Onorato6396e702012-05-31 23:21:46 -070054 LOCAL_CFLAGS += -DUSE_EXT4
55 LOCAL_C_INCLUDES += system/extras/ext4_utils
56 LOCAL_STATIC_LIBRARIES += libext4_utils_static libz
Doug Zongker49c73a72010-06-29 17:36:28 -070057endif
58
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080059# This binary is in the recovery ramdisk, which is otherwise a copy of root.
60# It gets copied there in config/Makefile. LOCAL_MODULE_TAGS suppresses
61# a (redundant) copy of the binary in /system/bin for user builds.
62# TODO: Build the ramdisk image in a more principled way.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080063LOCAL_MODULE_TAGS := eng
64
Doug Zongkerddd6a282009-06-09 12:22:33 -070065ifeq ($(TARGET_RECOVERY_UI_LIB),)
Doug Zongkerdaefc1d2011-10-31 09:34:15 -070066 LOCAL_SRC_FILES += default_device.cpp
Doug Zongkerddd6a282009-06-09 12:22:33 -070067else
68 LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_UI_LIB)
69endif
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080070
Doug Zongkercc8cd3f2010-09-20 12:16:13 -070071LOCAL_C_INCLUDES += system/extras/ext4_utils
72
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080073include $(BUILD_EXECUTABLE)
74
Doug Zongker73ae31c2009-12-09 17:01:45 -080075
Joe Onorato6396e702012-05-31 23:21:46 -070076
Doug Zongker73ae31c2009-12-09 17:01:45 -080077include $(CLEAR_VARS)
Doug Zongkerdaefc1d2011-10-31 09:34:15 -070078LOCAL_MODULE := verifier_test
Doug Zongkerdaefc1d2011-10-31 09:34:15 -070079LOCAL_FORCE_STATIC_EXECUTABLE := true
Doug Zongkerdaefc1d2011-10-31 09:34:15 -070080LOCAL_MODULE_TAGS := tests
Joe Onorato6396e702012-05-31 23:21:46 -070081LOCAL_SRC_FILES := \
82 verifier_test.cpp \
83 verifier.cpp \
84 ui.cpp
85LOCAL_STATIC_LIBRARIES := \
86 libmincrypt \
87 libminui \
88 libcutils \
89 libstdc++ \
90 libc
Doug Zongkerdaefc1d2011-10-31 09:34:15 -070091include $(BUILD_EXECUTABLE)
Doug Zongker73ae31c2009-12-09 17:01:45 -080092
93
Joe Onorato6396e702012-05-31 23:21:46 -070094include $(LOCAL_PATH)/minui/Android.mk \
95 $(LOCAL_PATH)/minelf/Android.mk \
96 $(LOCAL_PATH)/minzip/Android.mk \
97 $(LOCAL_PATH)/minadbd/Android.mk \
98 $(LOCAL_PATH)/mtdutils/Android.mk \
99 $(LOCAL_PATH)/tools/Android.mk \
100 $(LOCAL_PATH)/edify/Android.mk \
101 $(LOCAL_PATH)/updater/Android.mk \
102 $(LOCAL_PATH)/applypatch/Android.mk