blob: 8a4cd86d9c61536fa9ffdb84cab94ec260f87ecf [file] [log] [blame]
Doug Zongker9931f7f2009-06-10 14:11:53 -07001# Copyright 2009 The Android Open Source Project
Tao Baoba9a42a2015-06-23 23:23:33 -07002#
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.
Doug Zongker9931f7f2009-06-10 14:11:53 -070014
15LOCAL_PATH := $(call my-dir)
16
Tao Baod80a9982016-03-03 11:43:47 -080017tune2fs_static_libraries := \
18 libext2_com_err \
19 libext2_blkid \
20 libext2_quota \
Alex Deymo7c5dbd62017-01-13 17:32:20 -080021 libext2_uuid \
Tao Baod80a9982016-03-03 11:43:47 -080022 libext2_e2p \
23 libext2fs
24
Tao Bao0c7839a2016-10-10 15:48:37 -070025updater_common_static_libraries := \
26 libapplypatch \
Tao Baobedf5fc2016-11-18 12:01:26 -080027 libbootloader_message \
Tao Bao673bb6f2018-08-03 20:56:25 -070028 libbspatch \
Tao Bao9a319f02018-01-04 13:19:11 -080029 libedify \
Tao Bao9a319f02018-01-04 13:19:11 -080030 libotautil \
Alex Deymo31653662017-01-11 14:02:13 -080031 libext4_utils \
Yifan Hong8ff84d72018-12-19 16:21:55 -080032 libdm \
Tao Bao0c7839a2016-10-10 15:48:37 -070033 libfec \
34 libfec_rs \
Tianjie Xu69ffa152018-08-01 16:40:00 -070035 libverity_tree \
Tao Bao6a7e4af2018-06-14 21:57:43 -070036 libgtest_prod \
Tao Bao0c7839a2016-10-10 15:48:37 -070037 liblog \
Yifan Hong8ff84d72018-12-19 16:21:55 -080038 liblp \
Tao Bao0c7839a2016-10-10 15:48:37 -070039 libselinux \
Alex Deymo67f3aa82017-01-11 14:38:20 -080040 libsparse \
Tao Bao0c7839a2016-10-10 15:48:37 -070041 libsquashfs_utils \
Tao Bao673bb6f2018-08-03 20:56:25 -070042 libbrotli \
Tao Bao0c7839a2016-10-10 15:48:37 -070043 libbz \
Tao Bao673bb6f2018-08-03 20:56:25 -070044 libziparchive \
Tao Bao0c7839a2016-10-10 15:48:37 -070045 libz \
46 libbase \
Colin Cross0e643e42019-09-18 11:05:34 -070047 libcrypto_static \
Tao Bao0c7839a2016-10-10 15:48:37 -070048 libcrypto_utils \
49 libcutils \
Tianjie Xuc1a5e262019-05-22 14:34:12 -070050 libutils
51
52
53# Each library in TARGET_RECOVERY_UPDATER_LIBS should have a function
54# named "Register_<libname>()". Here we emit a little C function that
55# gets #included by updater.cpp. It calls all those registration
56# functions.
57# $(1): the path to the register.inc file
58# $(2): a list of TARGET_RECOVERY_UPDATER_LIBS
59define generate-register-inc
60 $(hide) mkdir -p $(dir $(1))
61 $(hide) echo "" > $(1)
62 $(hide) $(foreach lib,$(2),echo "extern void Register_$(lib)(void);" >> $(1);)
63 $(hide) echo "void RegisterDeviceExtensions() {" >> $(1)
64 $(hide) $(foreach lib,$(2),echo " Register_$(lib)();" >> $(1);)
65 $(hide) echo "}" >> $(1)
66endef
67
Sami Tolvanen0a7b4732015-06-25 10:25:36 +010068
Tao Bao0c7839a2016-10-10 15:48:37 -070069# updater (static executable)
70# ===============================
71include $(CLEAR_VARS)
72
73LOCAL_MODULE := updater
74
75LOCAL_SRC_FILES := \
Tianjie Xu58d59122019-05-03 01:05:04 -070076 updater_main.cpp
Tao Bao0c7839a2016-10-10 15:48:37 -070077
78LOCAL_C_INCLUDES := \
Tao Bao0c7839a2016-10-10 15:48:37 -070079 $(LOCAL_PATH)/include
80
81LOCAL_CFLAGS := \
Tianjie Xuc89d1e72017-08-28 14:15:07 -070082 -Wall \
Tao Bao0c7839a2016-10-10 15:48:37 -070083 -Werror
84
85LOCAL_STATIC_LIBRARIES := \
Tianjie Xuc1a5e262019-05-22 14:34:12 -070086 libupdater_device \
87 libupdater_core \
Tao Bao0c7839a2016-10-10 15:48:37 -070088 $(TARGET_RECOVERY_UPDATER_LIBS) \
89 $(TARGET_RECOVERY_UPDATER_EXTRA_LIBS) \
Tianjie Xuc1a5e262019-05-22 14:34:12 -070090 $(updater_common_static_libraries) \
91 libfs_mgr \
92 libtune2fs \
93 $(tune2fs_static_libraries)
Doug Zongker9931f7f2009-06-10 14:11:53 -070094
Tianjie Xuc1a5e262019-05-22 14:34:12 -070095LOCAL_MODULE_CLASS := EXECUTABLES
96inc := $(call local-generated-sources-dir)/register.inc
Doug Zongker2b0fdc62009-06-19 11:22:06 -070097
98# Devices can also add libraries to TARGET_RECOVERY_UPDATER_EXTRA_LIBS.
99# These libs are also linked in with updater, but we don't try to call
100# any sort of registration function for these. Use this variable for
101# any subsidiary static libraries required for your registered
102# extension libs.
Doug Zongker2b0fdc62009-06-19 11:22:06 -0700103$(inc) : libs := $(TARGET_RECOVERY_UPDATER_LIBS)
Dan Willemsenedec27a2017-03-21 16:41:14 -0700104$(inc) :
Tianjie Xuc1a5e262019-05-22 14:34:12 -0700105 $(call generate-register-inc,$@,$(libs))
Doug Zongker2b0fdc62009-06-19 11:22:06 -0700106
Dan Willemsenedec27a2017-03-21 16:41:14 -0700107LOCAL_GENERATED_SOURCES := $(inc)
Doug Zongker2b0fdc62009-06-19 11:22:06 -0700108
Ying Wangeef790d2012-06-11 14:53:08 -0700109inc :=
Ying Wangeef790d2012-06-11 14:53:08 -0700110
Doug Zongker9931f7f2009-06-10 14:11:53 -0700111LOCAL_FORCE_STATIC_EXECUTABLE := true
112
113include $(BUILD_EXECUTABLE)