Tao Bao | ef5e38f | 2018-07-24 15:34:39 -0700 | [diff] [blame] | 1 | // Copyright (C) 2018 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 | |
| 15 | cc_defaults { |
| 16 | name: "recovery_test_defaults", |
| 17 | |
| 18 | defaults: [ |
| 19 | "recovery_defaults", |
| 20 | ], |
| 21 | |
| 22 | include_dirs: [ |
| 23 | "bootable/recovery", |
| 24 | ], |
| 25 | |
| 26 | shared_libs: [ |
| 27 | "libbase", |
| 28 | "libcrypto", |
| 29 | "libcutils", |
| 30 | "liblog", |
| 31 | "libpng", |
Suren Baghdasaryan | 0ca607c | 2019-01-25 05:33:42 +0000 | [diff] [blame] | 32 | "libprocessgroup", |
Tao Bao | ef5e38f | 2018-07-24 15:34:39 -0700 | [diff] [blame] | 33 | "libselinux", |
| 34 | "libz", |
| 35 | "libziparchive", |
| 36 | ], |
| 37 | |
| 38 | target: { |
| 39 | android: { |
| 40 | shared_libs: [ |
| 41 | "libutils", |
| 42 | ], |
| 43 | }, |
| 44 | |
| 45 | host: { |
| 46 | static_libs: [ |
| 47 | "libutils", |
| 48 | ], |
Jayant Chowdhary | d24b054 | 2018-10-01 22:55:56 +0000 | [diff] [blame] | 49 | }, |
Tao Bao | ef5e38f | 2018-07-24 15:34:39 -0700 | [diff] [blame] | 50 | }, |
| 51 | } |
| 52 | |
| 53 | // libapplypatch, libapplypatch_modes, libimgdiff, libimgpatch |
| 54 | libapplypatch_static_libs = [ |
| 55 | "libapplypatch_modes", |
| 56 | "libapplypatch", |
| 57 | "libedify", |
| 58 | "libimgdiff", |
| 59 | "libimgpatch", |
Tao Bao | ef5e38f | 2018-07-24 15:34:39 -0700 | [diff] [blame] | 60 | "libotautil", |
| 61 | "libbsdiff", |
| 62 | "libbspatch", |
| 63 | "libdivsufsort", |
| 64 | "libdivsufsort64", |
| 65 | "libutils", |
| 66 | "libbase", |
| 67 | "libbrotli", |
| 68 | "libbz", |
| 69 | "libcrypto", |
| 70 | "libz", |
| 71 | "libziparchive", |
| 72 | ] |
| 73 | |
| 74 | // librecovery_defaults uses many shared libs that we want to avoid using in tests (e.g. we don't |
| 75 | // have 32-bit android.hardware.health@2.0.so or libbootloader_message.so on marlin). |
| 76 | librecovery_static_libs = [ |
| 77 | "librecovery", |
| 78 | "librecovery_fastboot", |
xunchang | 2478885 | 2019-03-22 16:08:52 -0700 | [diff] [blame] | 79 | "libinstall", |
| 80 | "librecovery_ui", |
Tao Bao | ef5e38f | 2018-07-24 15:34:39 -0700 | [diff] [blame] | 81 | "libminui", |
Tao Bao | 4a01f36 | 2019-04-26 23:41:49 -0700 | [diff] [blame] | 82 | "libfusesideload", |
| 83 | "libbootloader_message", |
Tao Bao | ef5e38f | 2018-07-24 15:34:39 -0700 | [diff] [blame] | 84 | "libotautil", |
| 85 | |
| 86 | "libhealthhalutils", |
| 87 | "libvintf_recovery", |
| 88 | "libvintf", |
| 89 | |
| 90 | "android.hardware.health@2.0", |
| 91 | "android.hardware.health@1.0", |
Tao Bao | ef5e38f | 2018-07-24 15:34:39 -0700 | [diff] [blame] | 92 | "libext4_utils", |
| 93 | "libfs_mgr", |
Tao Bao | ef5e38f | 2018-07-24 15:34:39 -0700 | [diff] [blame] | 94 | "libhidl-gen-utils", |
| 95 | "libhidlbase", |
| 96 | "libhidltransport", |
Pirama Arumuga Nainar | b3339dd | 2018-11-14 11:39:24 -0800 | [diff] [blame] | 97 | "libhwbinder_noltopgo", |
Jayant Chowdhary | d24b054 | 2018-10-01 22:55:56 +0000 | [diff] [blame] | 98 | "libbinderthreadstate", |
Yifan Hong | 0f339e2 | 2018-12-03 13:44:01 -0800 | [diff] [blame] | 99 | "liblp", |
Tao Bao | ef5e38f | 2018-07-24 15:34:39 -0700 | [diff] [blame] | 100 | "libvndksupport", |
| 101 | "libtinyxml2", |
| 102 | ] |
| 103 | |
| 104 | cc_test { |
| 105 | name: "recovery_unit_test", |
Christopher Ferris | 272467d | 2018-08-22 19:38:49 -0700 | [diff] [blame] | 106 | isolated: true, |
Tao Bao | ef5e38f | 2018-07-24 15:34:39 -0700 | [diff] [blame] | 107 | |
| 108 | defaults: [ |
| 109 | "recovery_test_defaults", |
Tao Bao | 4a01f36 | 2019-04-26 23:41:49 -0700 | [diff] [blame] | 110 | "libupdater_defaults", |
Tianjie Xu | c1a5e26 | 2019-05-22 14:34:12 -0700 | [diff] [blame] | 111 | "libupdater_device_defaults", |
Tao Bao | ef5e38f | 2018-07-24 15:34:39 -0700 | [diff] [blame] | 112 | ], |
| 113 | |
| 114 | test_suites: ["device-tests"], |
| 115 | |
| 116 | srcs: [ |
Tao Bao | 26b6454 | 2018-08-15 15:18:48 -0700 | [diff] [blame] | 117 | "unit/*.cpp", |
Tao Bao | ef5e38f | 2018-07-24 15:34:39 -0700 | [diff] [blame] | 118 | ], |
| 119 | |
Tao Bao | 4a01f36 | 2019-04-26 23:41:49 -0700 | [diff] [blame] | 120 | static_libs: libapplypatch_static_libs + librecovery_static_libs + [ |
Tao Bao | ef5e38f | 2018-07-24 15:34:39 -0700 | [diff] [blame] | 121 | "librecovery_ui", |
xunchang | 311e6ca | 2019-03-22 08:54:35 -0700 | [diff] [blame] | 122 | "libfusesideload", |
Tao Bao | ef5e38f | 2018-07-24 15:34:39 -0700 | [diff] [blame] | 123 | "libminui", |
Tao Bao | ef5e38f | 2018-07-24 15:34:39 -0700 | [diff] [blame] | 124 | "libotautil", |
Tianjie Xu | c1a5e26 | 2019-05-22 14:34:12 -0700 | [diff] [blame] | 125 | "libupdater_device", |
| 126 | "libupdater_core", |
Tao Bao | 4a01f36 | 2019-04-26 23:41:49 -0700 | [diff] [blame] | 127 | "libupdate_verifier", |
| 128 | |
Tao Bao | ef5e38f | 2018-07-24 15:34:39 -0700 | [diff] [blame] | 129 | "libgtest_prod", |
Tao Bao | 4a01f36 | 2019-04-26 23:41:49 -0700 | [diff] [blame] | 130 | "libprotobuf-cpp-lite", |
Tao Bao | ef5e38f | 2018-07-24 15:34:39 -0700 | [diff] [blame] | 131 | ], |
| 132 | |
Tao Bao | 4a01f36 | 2019-04-26 23:41:49 -0700 | [diff] [blame] | 133 | data: [ |
| 134 | "testdata/*", |
| 135 | ":res-testdata", |
| 136 | ], |
Tao Bao | ef5e38f | 2018-07-24 15:34:39 -0700 | [diff] [blame] | 137 | } |
| 138 | |
| 139 | cc_test { |
| 140 | name: "recovery_manual_test", |
Christopher Ferris | 272467d | 2018-08-22 19:38:49 -0700 | [diff] [blame] | 141 | isolated: true, |
Tao Bao | ef5e38f | 2018-07-24 15:34:39 -0700 | [diff] [blame] | 142 | |
| 143 | defaults: [ |
| 144 | "recovery_test_defaults", |
| 145 | ], |
| 146 | |
| 147 | test_suites: ["device-tests"], |
| 148 | |
| 149 | srcs: [ |
| 150 | "manual/recovery_test.cpp", |
| 151 | ], |
Tao Bao | ef5e38f | 2018-07-24 15:34:39 -0700 | [diff] [blame] | 152 | } |
| 153 | |
Tao Bao | ef5e38f | 2018-07-24 15:34:39 -0700 | [diff] [blame] | 154 | cc_test_host { |
| 155 | name: "recovery_host_test", |
Christopher Ferris | 272467d | 2018-08-22 19:38:49 -0700 | [diff] [blame] | 156 | isolated: true, |
Tao Bao | ef5e38f | 2018-07-24 15:34:39 -0700 | [diff] [blame] | 157 | |
| 158 | defaults: [ |
| 159 | "recovery_test_defaults", |
| 160 | ], |
| 161 | |
| 162 | srcs: [ |
Tao Bao | 4a01f36 | 2019-04-26 23:41:49 -0700 | [diff] [blame] | 163 | "unit/imgdiff_test.cpp", |
Tao Bao | ef5e38f | 2018-07-24 15:34:39 -0700 | [diff] [blame] | 164 | ], |
| 165 | |
| 166 | static_libs: [ |
| 167 | "libimgdiff", |
| 168 | "libimgpatch", |
| 169 | "libotautil", |
| 170 | "libbsdiff", |
| 171 | "libbspatch", |
| 172 | "libziparchive", |
| 173 | "libutils", |
| 174 | "libcrypto", |
| 175 | "libbrotli", |
| 176 | "libbz", |
| 177 | "libdivsufsort64", |
| 178 | "libdivsufsort", |
| 179 | "libz", |
Tao Bao | ef5e38f | 2018-07-24 15:34:39 -0700 | [diff] [blame] | 180 | ], |
| 181 | |
Tao Bao | 83186dd | 2019-04-24 21:34:17 -0700 | [diff] [blame] | 182 | test_suites: ["general-tests"], |
| 183 | |
Tao Bao | ef5e38f | 2018-07-24 15:34:39 -0700 | [diff] [blame] | 184 | data: ["testdata/*"], |
Andreas Huber | 435dfac | 2018-08-15 16:11:25 -0700 | [diff] [blame] | 185 | |
| 186 | target: { |
| 187 | darwin: { |
| 188 | // libimgdiff is not available on the Mac. |
| 189 | enabled: false, |
| 190 | }, |
| 191 | }, |
Tao Bao | ef5e38f | 2018-07-24 15:34:39 -0700 | [diff] [blame] | 192 | } |