Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 1 | # Copyright (C) 2008 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. |
| 14 | |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 15 | LOCAL_PATH := $(call my-dir) |
Tao Bao | 80e46e0 | 2015-06-03 10:49:29 -0700 | [diff] [blame] | 16 | |
Tao Bao | d80a998 | 2016-03-03 11:43:47 -0800 | [diff] [blame] | 17 | # libapplypatch (static library) |
| 18 | # =============================== |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 19 | include $(CLEAR_VARS) |
Tao Bao | d80a998 | 2016-03-03 11:43:47 -0800 | [diff] [blame] | 20 | LOCAL_SRC_FILES := \ |
| 21 | applypatch.cpp \ |
| 22 | bspatch.cpp \ |
| 23 | freecache.cpp \ |
| 24 | imgpatch.cpp \ |
| 25 | utils.cpp |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 26 | LOCAL_MODULE := libapplypatch |
| 27 | LOCAL_MODULE_TAGS := eng |
Tao Bao | 97555da | 2016-12-15 10:15:06 -0800 | [diff] [blame] | 28 | LOCAL_C_INCLUDES := \ |
Tao Bao | d80a998 | 2016-03-03 11:43:47 -0800 | [diff] [blame] | 29 | $(LOCAL_PATH)/include \ |
| 30 | bootable/recovery |
| 31 | LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include |
Tao Bao | 97555da | 2016-12-15 10:15:06 -0800 | [diff] [blame] | 32 | LOCAL_STATIC_LIBRARIES := \ |
Tao Bao | d80a998 | 2016-03-03 11:43:47 -0800 | [diff] [blame] | 33 | libotafault \ |
Tao Bao | d80a998 | 2016-03-03 11:43:47 -0800 | [diff] [blame] | 34 | libbase \ |
Josh Gao | 073164f | 2016-08-05 15:59:05 -0700 | [diff] [blame] | 35 | libcrypto \ |
Sen Jiang | 25c5697 | 2016-05-10 15:23:25 -0700 | [diff] [blame] | 36 | libbspatch \ |
Tao Bao | d80a998 | 2016-03-03 11:43:47 -0800 | [diff] [blame] | 37 | libbz \ |
| 38 | libz |
Tao Bao | 087bc0c | 2017-01-19 10:46:39 -0800 | [diff] [blame] | 39 | LOCAL_CFLAGS := \ |
| 40 | -DZLIB_CONST \ |
| 41 | -Werror |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 42 | include $(BUILD_STATIC_LIBRARY) |
| 43 | |
Tao Bao | d80a998 | 2016-03-03 11:43:47 -0800 | [diff] [blame] | 44 | # libimgpatch (static library) |
| 45 | # =============================== |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 46 | include $(CLEAR_VARS) |
Tao Bao | 97555da | 2016-12-15 10:15:06 -0800 | [diff] [blame] | 47 | LOCAL_SRC_FILES := \ |
| 48 | bspatch.cpp \ |
| 49 | imgpatch.cpp \ |
| 50 | utils.cpp |
Sen Jiang | 0cce9cd | 2016-01-22 20:49:07 +0800 | [diff] [blame] | 51 | LOCAL_MODULE := libimgpatch |
Tao Bao | 97555da | 2016-12-15 10:15:06 -0800 | [diff] [blame] | 52 | LOCAL_C_INCLUDES := \ |
Tao Bao | d80a998 | 2016-03-03 11:43:47 -0800 | [diff] [blame] | 53 | $(LOCAL_PATH)/include \ |
| 54 | bootable/recovery |
Sen Jiang | 0cce9cd | 2016-01-22 20:49:07 +0800 | [diff] [blame] | 55 | LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include |
Tao Bao | 97555da | 2016-12-15 10:15:06 -0800 | [diff] [blame] | 56 | LOCAL_STATIC_LIBRARIES := \ |
| 57 | libcrypto \ |
Sen Jiang | 25c5697 | 2016-05-10 15:23:25 -0700 | [diff] [blame] | 58 | libbspatch \ |
Tao Bao | 97555da | 2016-12-15 10:15:06 -0800 | [diff] [blame] | 59 | libbz \ |
| 60 | libz |
Tao Bao | 087bc0c | 2017-01-19 10:46:39 -0800 | [diff] [blame] | 61 | LOCAL_CFLAGS := \ |
| 62 | -DZLIB_CONST \ |
| 63 | -Werror |
Sen Jiang | 0cce9cd | 2016-01-22 20:49:07 +0800 | [diff] [blame] | 64 | include $(BUILD_STATIC_LIBRARY) |
| 65 | |
Tao Bao | d80a998 | 2016-03-03 11:43:47 -0800 | [diff] [blame] | 66 | # libimgpatch (host static library) |
| 67 | # =============================== |
Sen Jiang | 0cce9cd | 2016-01-22 20:49:07 +0800 | [diff] [blame] | 68 | include $(CLEAR_VARS) |
Tao Bao | 97555da | 2016-12-15 10:15:06 -0800 | [diff] [blame] | 69 | LOCAL_SRC_FILES := \ |
| 70 | bspatch.cpp \ |
| 71 | imgpatch.cpp \ |
| 72 | utils.cpp |
Sen Jiang | 0cce9cd | 2016-01-22 20:49:07 +0800 | [diff] [blame] | 73 | LOCAL_MODULE := libimgpatch |
Tao Bao | d80a998 | 2016-03-03 11:43:47 -0800 | [diff] [blame] | 74 | LOCAL_MODULE_HOST_OS := linux |
Tao Bao | 97555da | 2016-12-15 10:15:06 -0800 | [diff] [blame] | 75 | LOCAL_C_INCLUDES := \ |
Tao Bao | d80a998 | 2016-03-03 11:43:47 -0800 | [diff] [blame] | 76 | $(LOCAL_PATH)/include \ |
| 77 | bootable/recovery |
Sen Jiang | 0cce9cd | 2016-01-22 20:49:07 +0800 | [diff] [blame] | 78 | LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include |
Tao Bao | 97555da | 2016-12-15 10:15:06 -0800 | [diff] [blame] | 79 | LOCAL_STATIC_LIBRARIES := \ |
| 80 | libcrypto \ |
Sen Jiang | 25c5697 | 2016-05-10 15:23:25 -0700 | [diff] [blame] | 81 | libbspatch \ |
Tao Bao | 97555da | 2016-12-15 10:15:06 -0800 | [diff] [blame] | 82 | libbz \ |
| 83 | libz |
Tao Bao | 087bc0c | 2017-01-19 10:46:39 -0800 | [diff] [blame] | 84 | LOCAL_CFLAGS := \ |
| 85 | -DZLIB_CONST \ |
| 86 | -Werror |
Sen Jiang | 0cce9cd | 2016-01-22 20:49:07 +0800 | [diff] [blame] | 87 | include $(BUILD_HOST_STATIC_LIBRARY) |
| 88 | |
Tao Bao | 36c3511 | 2016-10-25 14:17:26 -0700 | [diff] [blame] | 89 | # libapplypatch_modes (static library) |
Tao Bao | d80a998 | 2016-03-03 11:43:47 -0800 | [diff] [blame] | 90 | # =============================== |
Sen Jiang | 0cce9cd | 2016-01-22 20:49:07 +0800 | [diff] [blame] | 91 | include $(CLEAR_VARS) |
Tao Bao | 36c3511 | 2016-10-25 14:17:26 -0700 | [diff] [blame] | 92 | LOCAL_SRC_FILES := \ |
| 93 | applypatch_modes.cpp |
| 94 | LOCAL_MODULE := libapplypatch_modes |
| 95 | LOCAL_C_INCLUDES := bootable/recovery |
| 96 | LOCAL_STATIC_LIBRARIES := \ |
| 97 | libapplypatch \ |
| 98 | libbase \ |
| 99 | libedify \ |
| 100 | libcrypto |
| 101 | LOCAL_CFLAGS := -Werror |
| 102 | include $(BUILD_STATIC_LIBRARY) |
| 103 | |
| 104 | # applypatch (target executable) |
| 105 | # =============================== |
| 106 | include $(CLEAR_VARS) |
Tao Bao | 36c3511 | 2016-10-25 14:17:26 -0700 | [diff] [blame] | 107 | LOCAL_SRC_FILES := applypatch_main.cpp |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 108 | LOCAL_MODULE := applypatch |
Tao Bao | 36c3511 | 2016-10-25 14:17:26 -0700 | [diff] [blame] | 109 | LOCAL_C_INCLUDES := bootable/recovery |
| 110 | LOCAL_STATIC_LIBRARIES := \ |
| 111 | libapplypatch_modes \ |
Tao Bao | d80a998 | 2016-03-03 11:43:47 -0800 | [diff] [blame] | 112 | libapplypatch \ |
| 113 | libbase \ |
| 114 | libedify \ |
| 115 | libotafault \ |
Josh Gao | 073164f | 2016-08-05 15:59:05 -0700 | [diff] [blame] | 116 | libcrypto \ |
Sen Jiang | 25c5697 | 2016-05-10 15:23:25 -0700 | [diff] [blame] | 117 | libbspatch \ |
Tao Bao | d80a998 | 2016-03-03 11:43:47 -0800 | [diff] [blame] | 118 | libbz |
Tao Bao | 36c3511 | 2016-10-25 14:17:26 -0700 | [diff] [blame] | 119 | LOCAL_SHARED_LIBRARIES := \ |
| 120 | libbase \ |
| 121 | libz \ |
| 122 | libcutils |
Tianjie Xu | 7aa8874 | 2016-09-28 11:42:17 -0700 | [diff] [blame] | 123 | LOCAL_CFLAGS := -Werror |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 124 | include $(BUILD_EXECUTABLE) |
| 125 | |
Tao Bao | 97555da | 2016-12-15 10:15:06 -0800 | [diff] [blame] | 126 | libimgdiff_src_files := \ |
| 127 | imgdiff.cpp \ |
| 128 | utils.cpp |
| 129 | |
| 130 | # libbsdiff is compiled with -D_FILE_OFFSET_BITS=64. |
| 131 | libimgdiff_cflags := \ |
| 132 | -Werror \ |
| 133 | -D_FILE_OFFSET_BITS=64 |
| 134 | |
| 135 | libimgdiff_static_libraries := \ |
| 136 | libbsdiff \ |
Sen Jiang | 930edb6 | 2017-01-18 17:26:42 -0800 | [diff] [blame] | 137 | libdivsufsort \ |
| 138 | libdivsufsort64 \ |
Tianjie Xu | 1ea84d6 | 2017-02-22 18:23:58 -0800 | [diff] [blame] | 139 | libziparchive \ |
| 140 | libutils \ |
| 141 | liblog \ |
Tao Bao | d37ce8f | 2016-12-17 17:10:04 -0800 | [diff] [blame] | 142 | libbase \ |
Tao Bao | 97555da | 2016-12-15 10:15:06 -0800 | [diff] [blame] | 143 | libz |
| 144 | |
| 145 | # libimgdiff (static library) |
| 146 | # =============================== |
| 147 | include $(CLEAR_VARS) |
| 148 | LOCAL_SRC_FILES := \ |
| 149 | $(libimgdiff_src_files) |
| 150 | LOCAL_MODULE := libimgdiff |
| 151 | LOCAL_CFLAGS := \ |
| 152 | $(libimgdiff_cflags) |
| 153 | LOCAL_STATIC_LIBRARIES := \ |
| 154 | $(libimgdiff_static_libraries) |
| 155 | LOCAL_C_INCLUDES := \ |
| 156 | $(LOCAL_PATH)/include |
| 157 | LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include |
| 158 | include $(BUILD_STATIC_LIBRARY) |
| 159 | |
| 160 | # libimgdiff (host static library) |
| 161 | # =============================== |
| 162 | include $(CLEAR_VARS) |
| 163 | LOCAL_SRC_FILES := \ |
| 164 | $(libimgdiff_src_files) |
| 165 | LOCAL_MODULE := libimgdiff |
| 166 | LOCAL_CFLAGS := \ |
| 167 | $(libimgdiff_cflags) |
| 168 | LOCAL_STATIC_LIBRARIES := \ |
| 169 | $(libimgdiff_static_libraries) |
| 170 | LOCAL_C_INCLUDES := \ |
| 171 | $(LOCAL_PATH)/include |
| 172 | LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include |
| 173 | include $(BUILD_HOST_STATIC_LIBRARY) |
| 174 | |
Tao Bao | d80a998 | 2016-03-03 11:43:47 -0800 | [diff] [blame] | 175 | # imgdiff (host static executable) |
| 176 | # =============================== |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 177 | include $(CLEAR_VARS) |
Tao Bao | 97555da | 2016-12-15 10:15:06 -0800 | [diff] [blame] | 178 | LOCAL_SRC_FILES := imgdiff_main.cpp |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 179 | LOCAL_MODULE := imgdiff |
Tianjie Xu | 7aa8874 | 2016-09-28 11:42:17 -0700 | [diff] [blame] | 180 | LOCAL_CFLAGS := -Werror |
Tao Bao | 97555da | 2016-12-15 10:15:06 -0800 | [diff] [blame] | 181 | LOCAL_STATIC_LIBRARIES := \ |
| 182 | libimgdiff \ |
| 183 | $(libimgdiff_static_libraries) \ |
Sen Jiang | 930edb6 | 2017-01-18 17:26:42 -0800 | [diff] [blame] | 184 | libbz |
Doug Zongker | 512536a | 2010-02-17 16:11:44 -0800 | [diff] [blame] | 185 | include $(BUILD_HOST_EXECUTABLE) |