Dan Albert | 13f21c2 | 2014-10-16 17:39:31 -0700 | [diff] [blame] | 1 | # |
| 2 | # Copyright (C) 2014 The Android Open Source Project |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | # |
| 16 | |
Kenny Root | 7a4adb5 | 2013-10-09 10:14:35 -0700 | [diff] [blame] | 17 | LOCAL_PATH := $(call my-dir) |
Dan Albert | 13f21c2 | 2014-10-16 17:39:31 -0700 | [diff] [blame] | 18 | |
Tao Bao | b8cb2e6 | 2018-07-06 12:14:36 -0700 | [diff] [blame] | 19 | # libapplypatch, libapplypatch_modes, libimgdiff, libimgpatch. |
| 20 | libapplypatch_static_libraries := \ |
| 21 | libapplypatch_modes \ |
| 22 | libapplypatch \ |
| 23 | libedify \ |
| 24 | libimgdiff \ |
| 25 | libimgpatch \ |
| 26 | libotafault \ |
| 27 | libotautil \ |
| 28 | libbsdiff \ |
| 29 | libbspatch \ |
| 30 | libdivsufsort \ |
| 31 | libdivsufsort64 \ |
| 32 | libutils \ |
| 33 | libbase \ |
| 34 | libbrotli \ |
| 35 | libbz \ |
| 36 | libcrypto \ |
| 37 | libz \ |
| 38 | libziparchive \ |
| 39 | |
Jed Estep | 4329186 | 2016-02-03 17:02:09 -0800 | [diff] [blame] | 40 | # Unit tests |
| 41 | include $(CLEAR_VARS) |
Tianjie Xu | c89d1e7 | 2017-08-28 14:15:07 -0700 | [diff] [blame] | 42 | LOCAL_CFLAGS := -Wall -Werror |
Jed Estep | 4329186 | 2016-02-03 17:02:09 -0800 | [diff] [blame] | 43 | LOCAL_MODULE := recovery_unit_test |
Dan Shi | 7368316 | 2017-03-28 17:22:41 -0700 | [diff] [blame] | 44 | LOCAL_COMPATIBILITY_SUITE := device-tests |
Tianjie Xu | 2430e29 | 2016-04-19 15:02:41 -0700 | [diff] [blame] | 45 | LOCAL_STATIC_LIBRARIES := \ |
Tao Bao | b8cb2e6 | 2018-07-06 12:14:36 -0700 | [diff] [blame] | 46 | $(libapplypatch_static_libraries) \ |
Tianjie Xu | 2430e29 | 2016-04-19 15:02:41 -0700 | [diff] [blame] | 47 | libverifier \ |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 48 | librecovery_ui \ |
Tianjie Xu | 8cf5c8f | 2016-09-08 20:10:11 -0700 | [diff] [blame] | 49 | libminui \ |
| 50 | libotautil \ |
Tao Bao | 8f23757 | 2017-03-26 13:36:49 -0700 | [diff] [blame] | 51 | libupdater \ |
Tao Bao | 6a7e4af | 2018-06-14 21:57:43 -0700 | [diff] [blame] | 52 | libgtest_prod \ |
Tao Bao | 6cd8168 | 2018-05-03 21:53:11 -0700 | [diff] [blame] | 53 | libpng \ |
Tianjie Xu | 8cf5c8f | 2016-09-08 20:10:11 -0700 | [diff] [blame] | 54 | libziparchive \ |
| 55 | libutils \ |
| 56 | libz \ |
| 57 | libselinux \ |
Tianjie Xu | a88cc54 | 2017-10-25 13:16:54 -0700 | [diff] [blame] | 58 | libbase \ |
| 59 | libBionicGtestMain |
Tianjie Xu | 2430e29 | 2016-04-19 15:02:41 -0700 | [diff] [blame] | 60 | |
Tao Bao | c3292f3 | 2016-11-04 10:52:13 -0700 | [diff] [blame] | 61 | LOCAL_SRC_FILES := \ |
Tao Bao | b8cb2e6 | 2018-07-06 12:14:36 -0700 | [diff] [blame] | 62 | unit/applypatch_test.cpp \ |
Tao Bao | c3292f3 | 2016-11-04 10:52:13 -0700 | [diff] [blame] | 63 | unit/asn1_decoder_test.cpp \ |
Tao Bao | c390123 | 2018-05-21 16:05:56 -0700 | [diff] [blame] | 64 | unit/commands_test.cpp \ |
Tao Bao | f19295c | 2016-12-22 09:28:03 -0800 | [diff] [blame] | 65 | unit/dirutil_test.cpp \ |
Tao Bao | c3292f3 | 2016-11-04 10:52:13 -0700 | [diff] [blame] | 66 | unit/locale_test.cpp \ |
Tao Bao | 8f23757 | 2017-03-26 13:36:49 -0700 | [diff] [blame] | 67 | unit/rangeset_test.cpp \ |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 68 | unit/screen_ui_test.cpp \ |
Tao Bao | c3292f3 | 2016-11-04 10:52:13 -0700 | [diff] [blame] | 69 | unit/sysutil_test.cpp \ |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 70 | unit/zip_test.cpp |
Tao Bao | c3292f3 | 2016-11-04 10:52:13 -0700 | [diff] [blame] | 71 | |
Jed Estep | 4329186 | 2016-02-03 17:02:09 -0800 | [diff] [blame] | 72 | LOCAL_C_INCLUDES := bootable/recovery |
Mark Salyzyn | a4f701a | 2016-03-09 14:58:16 -0800 | [diff] [blame] | 73 | LOCAL_SHARED_LIBRARIES := liblog |
Tao Bao | 9d91e89 | 2018-03-30 20:43:45 -0700 | [diff] [blame] | 74 | LOCAL_TEST_DATA := \ |
| 75 | $(call find-test-data-in-subdirs, $(LOCAL_PATH), "*", testdata) |
Jed Estep | 4329186 | 2016-02-03 17:02:09 -0800 | [diff] [blame] | 76 | include $(BUILD_NATIVE_TEST) |
| 77 | |
Tianjie Xu | 5d8b53b | 2016-11-07 14:45:59 -0800 | [diff] [blame] | 78 | # Manual tests |
| 79 | include $(CLEAR_VARS) |
Tianjie Xu | c89d1e7 | 2017-08-28 14:15:07 -0700 | [diff] [blame] | 80 | LOCAL_CFLAGS := -Wall -Werror |
Tianjie Xu | 5d8b53b | 2016-11-07 14:45:59 -0800 | [diff] [blame] | 81 | LOCAL_MODULE := recovery_manual_test |
Tianjie Xu | d17a688 | 2017-01-09 11:18:29 -0800 | [diff] [blame] | 82 | LOCAL_STATIC_LIBRARIES := \ |
Tianjie Xu | a88cc54 | 2017-10-25 13:16:54 -0700 | [diff] [blame] | 83 | libbase \ |
| 84 | libBionicGtestMain |
Tianjie Xu | 5d8b53b | 2016-11-07 14:45:59 -0800 | [diff] [blame] | 85 | |
| 86 | LOCAL_SRC_FILES := manual/recovery_test.cpp |
Tianjie Xu | d17a688 | 2017-01-09 11:18:29 -0800 | [diff] [blame] | 87 | LOCAL_SHARED_LIBRARIES := \ |
Tao Bao | 6b28f05 | 2018-04-13 13:41:58 -0700 | [diff] [blame] | 88 | liblog |
Tianjie Xu | d17a688 | 2017-01-09 11:18:29 -0800 | [diff] [blame] | 89 | |
Tianjie Xu | 5d8b53b | 2016-11-07 14:45:59 -0800 | [diff] [blame] | 90 | include $(BUILD_NATIVE_TEST) |
| 91 | |
Jed Estep | 4329186 | 2016-02-03 17:02:09 -0800 | [diff] [blame] | 92 | # Component tests |
Kenny Root | 7a4adb5 | 2013-10-09 10:14:35 -0700 | [diff] [blame] | 93 | include $(CLEAR_VARS) |
Tianjie Xu | 56ebe62 | 2017-03-16 00:48:21 -0700 | [diff] [blame] | 94 | LOCAL_CFLAGS := \ |
Tianjie Xu | c89d1e7 | 2017-08-28 14:15:07 -0700 | [diff] [blame] | 95 | -Wall \ |
Tianjie Xu | 56ebe62 | 2017-03-16 00:48:21 -0700 | [diff] [blame] | 96 | -Werror \ |
| 97 | -D_FILE_OFFSET_BITS=64 |
| 98 | |
Jed Estep | 4329186 | 2016-02-03 17:02:09 -0800 | [diff] [blame] | 99 | LOCAL_MODULE := recovery_component_test |
Dan Shi | 7368316 | 2017-03-28 17:22:41 -0700 | [diff] [blame] | 100 | LOCAL_COMPATIBILITY_SUITE := device-tests |
Jed Estep | 4329186 | 2016-02-03 17:02:09 -0800 | [diff] [blame] | 101 | LOCAL_C_INCLUDES := bootable/recovery |
Jed Estep | b8a693b | 2016-03-09 17:51:34 -0800 | [diff] [blame] | 102 | LOCAL_SRC_FILES := \ |
Tao Bao | b8cb2e6 | 2018-07-06 12:14:36 -0700 | [diff] [blame] | 103 | component/applypatch_modes_test.cpp \ |
Tao Bao | 8b7301b | 2016-12-14 15:52:34 -0800 | [diff] [blame] | 104 | component/bootloader_message_test.cpp \ |
Tao Bao | d770d2e | 2016-10-03 15:26:06 -0700 | [diff] [blame] | 105 | component/edify_test.cpp \ |
Tao Bao | 97555da | 2016-12-15 10:15:06 -0800 | [diff] [blame] | 106 | component/imgdiff_test.cpp \ |
Tao Bao | 1d86605 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 107 | component/install_test.cpp \ |
Tao Bao | 6b28f05 | 2018-04-13 13:41:58 -0700 | [diff] [blame] | 108 | component/resources_test.cpp \ |
Wei Wang | b72a15a | 2017-03-02 13:46:37 -0800 | [diff] [blame] | 109 | component/sideload_test.cpp \ |
Tao Bao | 1033408 | 2016-12-12 17:10:20 -0800 | [diff] [blame] | 110 | component/uncrypt_test.cpp \ |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 111 | component/updater_test.cpp \ |
Tao Bao | 83b0780 | 2017-04-26 14:30:56 -0700 | [diff] [blame] | 112 | component/update_verifier_test.cpp \ |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 113 | component/verifier_test.cpp |
Tao Bao | 1033408 | 2016-12-12 17:10:20 -0800 | [diff] [blame] | 114 | |
Tao Bao | 3e2345e | 2017-08-09 16:33:07 -0700 | [diff] [blame] | 115 | LOCAL_SHARED_LIBRARIES := \ |
| 116 | libhidlbase |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 117 | |
| 118 | tune2fs_static_libraries := \ |
| 119 | libext2_com_err \ |
| 120 | libext2_blkid \ |
| 121 | libext2_quota \ |
Alex Deymo | 7c5dbd6 | 2017-01-13 17:32:20 -0800 | [diff] [blame] | 122 | libext2_uuid \ |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 123 | libext2_e2p \ |
| 124 | libext2fs |
| 125 | |
Tao Bao | 9e30997 | 2018-05-11 15:13:10 -0700 | [diff] [blame] | 126 | libupdater_static_libraries := \ |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 127 | libupdater \ |
Tao Bao | 9e30997 | 2018-05-11 15:13:10 -0700 | [diff] [blame] | 128 | libapplypatch \ |
| 129 | libbspatch \ |
| 130 | libedify \ |
| 131 | libziparchive \ |
| 132 | libotautil \ |
Tao Bao | bedf5fc | 2016-11-18 12:01:26 -0800 | [diff] [blame] | 133 | libbootloader_message \ |
Tao Bao | 9e30997 | 2018-05-11 15:13:10 -0700 | [diff] [blame] | 134 | libutils \ |
| 135 | libotafault \ |
| 136 | libext4_utils \ |
| 137 | libfec \ |
| 138 | libfec_rs \ |
| 139 | libfs_mgr \ |
Tao Bao | 6a7e4af | 2018-06-14 21:57:43 -0700 | [diff] [blame] | 140 | libgtest_prod \ |
Tao Bao | 9e30997 | 2018-05-11 15:13:10 -0700 | [diff] [blame] | 141 | liblog \ |
| 142 | libselinux \ |
| 143 | libsparse \ |
| 144 | libsquashfs_utils \ |
| 145 | libbz \ |
| 146 | libz \ |
| 147 | libbase \ |
| 148 | libcrypto \ |
| 149 | libcrypto_utils \ |
| 150 | libcutils \ |
| 151 | libtune2fs \ |
| 152 | libbrotli \ |
| 153 | $(tune2fs_static_libraries) |
| 154 | |
| 155 | librecovery_static_libraries := \ |
| 156 | librecovery \ |
| 157 | $(TARGET_RECOVERY_UI_LIB) \ |
| 158 | libbootloader_message \ |
| 159 | libfusesideload \ |
| 160 | libminadbd \ |
| 161 | librecovery_ui \ |
| 162 | libminui \ |
Jed Estep | 4329186 | 2016-02-03 17:02:09 -0800 | [diff] [blame] | 163 | libverifier \ |
Tianjie Xu | 8cf5c8f | 2016-09-08 20:10:11 -0700 | [diff] [blame] | 164 | libotautil \ |
Tao Bao | 9e30997 | 2018-05-11 15:13:10 -0700 | [diff] [blame] | 165 | libasyncio \ |
| 166 | libbatterymonitor \ |
| 167 | libcrypto_utils \ |
| 168 | libcrypto \ |
| 169 | libext4_utils \ |
Tao Bao | bedf5fc | 2016-11-18 12:01:26 -0800 | [diff] [blame] | 170 | libfs_mgr \ |
Tao Bao | 6b28f05 | 2018-04-13 13:41:58 -0700 | [diff] [blame] | 171 | libpng \ |
Tao Bao | 9e30997 | 2018-05-11 15:13:10 -0700 | [diff] [blame] | 172 | libsparse \ |
Tao Bao | 919d2c9 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 173 | libvintf_recovery \ |
| 174 | libvintf \ |
Yifan Hong | 495c521 | 2018-03-06 17:59:58 -0800 | [diff] [blame] | 175 | libhidl-gen-utils \ |
Tao Bao | 919d2c9 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 176 | libtinyxml2 \ |
Tao Bao | ef0eb3b | 2016-11-14 21:29:52 -0800 | [diff] [blame] | 177 | libziparchive \ |
Tianjie Xu | 7b0ad9c | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 178 | libbase \ |
Tao Bao | 9e30997 | 2018-05-11 15:13:10 -0700 | [diff] [blame] | 179 | libutils \ |
Tao Bao | 371fe6e | 2017-10-11 20:25:36 -0700 | [diff] [blame] | 180 | libcutils \ |
Tao Bao | 9e30997 | 2018-05-11 15:13:10 -0700 | [diff] [blame] | 181 | liblog \ |
| 182 | libselinux \ |
| 183 | libz \ |
| 184 | |
| 185 | libupdate_verifier_static_libraries := \ |
| 186 | libupdate_verifier \ |
| 187 | |
| 188 | LOCAL_STATIC_LIBRARIES := \ |
| 189 | $(libapplypatch_static_libraries) \ |
| 190 | $(librecovery_static_libraries) \ |
| 191 | $(libupdate_verifier_static_libraries) \ |
| 192 | $(libupdater_static_libraries) \ |
| 193 | libBionicGtestMain |
Jed Estep | 4329186 | 2016-02-03 17:02:09 -0800 | [diff] [blame] | 194 | |
Tao Bao | 9d91e89 | 2018-03-30 20:43:45 -0700 | [diff] [blame] | 195 | LOCAL_TEST_DATA := \ |
Tao Bao | 6b28f05 | 2018-04-13 13:41:58 -0700 | [diff] [blame] | 196 | $(call find-test-data-in-subdirs, $(LOCAL_PATH), "*", testdata) \ |
| 197 | $(call find-test-data-in-subdirs, bootable/recovery, "*_text.png", res-*) |
Dan Albert | 13f21c2 | 2014-10-16 17:39:31 -0700 | [diff] [blame] | 198 | include $(BUILD_NATIVE_TEST) |
Tao Bao | 97555da | 2016-12-15 10:15:06 -0800 | [diff] [blame] | 199 | |
| 200 | # Host tests |
| 201 | include $(CLEAR_VARS) |
Tianjie Xu | c89d1e7 | 2017-08-28 14:15:07 -0700 | [diff] [blame] | 202 | LOCAL_CFLAGS := -Wall -Werror |
Tao Bao | 97555da | 2016-12-15 10:15:06 -0800 | [diff] [blame] | 203 | LOCAL_MODULE := recovery_host_test |
| 204 | LOCAL_MODULE_HOST_OS := linux |
| 205 | LOCAL_C_INCLUDES := bootable/recovery |
| 206 | LOCAL_SRC_FILES := \ |
| 207 | component/imgdiff_test.cpp |
| 208 | LOCAL_STATIC_LIBRARIES := \ |
| 209 | libimgdiff \ |
| 210 | libimgpatch \ |
Tao Bao | 09e468f | 2017-09-29 14:39:33 -0700 | [diff] [blame] | 211 | libotautil \ |
Tao Bao | 97555da | 2016-12-15 10:15:06 -0800 | [diff] [blame] | 212 | libbsdiff \ |
Sen Jiang | 25c5697 | 2016-05-10 15:23:25 -0700 | [diff] [blame] | 213 | libbspatch \ |
Tao Bao | 97555da | 2016-12-15 10:15:06 -0800 | [diff] [blame] | 214 | libziparchive \ |
Tianjie Xu | 1ea84d6 | 2017-02-22 18:23:58 -0800 | [diff] [blame] | 215 | libutils \ |
Tao Bao | 97555da | 2016-12-15 10:15:06 -0800 | [diff] [blame] | 216 | libbase \ |
| 217 | libcrypto \ |
Tianjie Xu | 8c28081 | 2017-10-28 22:13:16 -0700 | [diff] [blame] | 218 | libbrotli \ |
Tao Bao | 97555da | 2016-12-15 10:15:06 -0800 | [diff] [blame] | 219 | libbz \ |
| 220 | libdivsufsort64 \ |
| 221 | libdivsufsort \ |
Tianjie Xu | a88cc54 | 2017-10-25 13:16:54 -0700 | [diff] [blame] | 222 | libz \ |
| 223 | libBionicGtestMain |
Tao Bao | 97555da | 2016-12-15 10:15:06 -0800 | [diff] [blame] | 224 | LOCAL_SHARED_LIBRARIES := \ |
| 225 | liblog |
Tao Bao | 9d91e89 | 2018-03-30 20:43:45 -0700 | [diff] [blame] | 226 | LOCAL_TEST_DATA := \ |
| 227 | $(call find-test-data-in-subdirs, $(LOCAL_PATH), "*", testdata) |
Tao Bao | 97555da | 2016-12-15 10:15:06 -0800 | [diff] [blame] | 228 | include $(BUILD_HOST_NATIVE_TEST) |