Tao Bao | d2f2ad6 | 2018-03-23 23:24:25 -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_defaults", |
| 17 | |
| 18 | cflags: [ |
Tao Bao | 818f938 | 2018-08-06 15:52:24 -0700 | [diff] [blame] | 19 | "-D_FILE_OFFSET_BITS=64", |
| 20 | |
| 21 | // Must be the same as RECOVERY_API_VERSION. |
| 22 | "-DRECOVERY_API_VERSION=3", |
| 23 | |
Tao Bao | d2f2ad6 | 2018-03-23 23:24:25 -0700 | [diff] [blame] | 24 | "-Wall", |
| 25 | "-Werror", |
| 26 | ], |
| 27 | } |
| 28 | |
Tao Bao | 5fc72a1 | 2018-08-07 14:38:51 -0700 | [diff] [blame] | 29 | cc_library { |
| 30 | name: "librecovery_ui", |
| 31 | recovery_available: true, |
| 32 | |
| 33 | defaults: [ |
| 34 | "recovery_defaults", |
| 35 | ], |
| 36 | |
| 37 | srcs: [ |
| 38 | "device.cpp", |
| 39 | "screen_ui.cpp", |
| 40 | "ui.cpp", |
| 41 | "vr_ui.cpp", |
| 42 | "wear_ui.cpp" |
| 43 | ], |
| 44 | |
| 45 | static_libs: [ |
| 46 | "libminui", |
| 47 | "libotautil", |
| 48 | ], |
| 49 | |
| 50 | shared_libs: [ |
| 51 | "libbase", |
| 52 | "libpng", |
| 53 | "libz", |
| 54 | ], |
| 55 | } |
| 56 | |
Tao Bao | d2f2ad6 | 2018-03-23 23:24:25 -0700 | [diff] [blame] | 57 | // Generic device that uses ScreenRecoveryUI. |
| 58 | cc_library_static { |
| 59 | name: "librecovery_ui_default", |
Tao Bao | 818f938 | 2018-08-06 15:52:24 -0700 | [diff] [blame] | 60 | recovery_available: true, |
Tao Bao | d2f2ad6 | 2018-03-23 23:24:25 -0700 | [diff] [blame] | 61 | |
| 62 | defaults: [ |
| 63 | "recovery_defaults", |
| 64 | ], |
| 65 | |
| 66 | srcs: [ |
| 67 | "default_device.cpp", |
| 68 | ], |
| 69 | } |
| 70 | |
| 71 | // The default wear device that uses WearRecoveryUI. |
| 72 | cc_library_static { |
| 73 | name: "librecovery_ui_wear", |
Tao Bao | 818f938 | 2018-08-06 15:52:24 -0700 | [diff] [blame] | 74 | recovery_available: true, |
Tao Bao | d2f2ad6 | 2018-03-23 23:24:25 -0700 | [diff] [blame] | 75 | |
| 76 | defaults: [ |
| 77 | "recovery_defaults", |
| 78 | ], |
| 79 | |
| 80 | srcs: [ |
| 81 | "wear_device.cpp", |
| 82 | ], |
| 83 | } |
| 84 | |
| 85 | // The default VR device that uses VrRecoveryUI. |
| 86 | cc_library_static { |
| 87 | name: "librecovery_ui_vr", |
Tao Bao | 818f938 | 2018-08-06 15:52:24 -0700 | [diff] [blame] | 88 | recovery_available: true, |
Tao Bao | d2f2ad6 | 2018-03-23 23:24:25 -0700 | [diff] [blame] | 89 | |
| 90 | defaults: [ |
| 91 | "recovery_defaults", |
| 92 | ], |
| 93 | |
| 94 | srcs: [ |
| 95 | "vr_device.cpp", |
| 96 | ], |
| 97 | } |
| 98 | |
Tao Bao | 5fc72a1 | 2018-08-07 14:38:51 -0700 | [diff] [blame] | 99 | cc_defaults { |
| 100 | name: "librecovery_defaults", |
| 101 | |
| 102 | defaults: [ |
| 103 | "recovery_defaults", |
| 104 | ], |
| 105 | |
| 106 | shared_libs: [ |
Tao Bao | 5fc72a1 | 2018-08-07 14:38:51 -0700 | [diff] [blame] | 107 | "libbase", |
| 108 | "libbootloader_message", |
| 109 | "libcrypto", |
Tao Bao | 5fc72a1 | 2018-08-07 14:38:51 -0700 | [diff] [blame] | 110 | "libcutils", |
| 111 | "libext4_utils", |
| 112 | "libfs_mgr", |
| 113 | "libfusesideload", |
| 114 | "libhidl-gen-utils", |
| 115 | "liblog", |
| 116 | "libpng", |
| 117 | "libselinux", |
Tao Bao | 5fc72a1 | 2018-08-07 14:38:51 -0700 | [diff] [blame] | 118 | "libtinyxml2", |
| 119 | "libutils", |
| 120 | "libz", |
| 121 | "libziparchive", |
| 122 | ], |
| 123 | |
| 124 | static_libs: [ |
Tao Bao | 5fc72a1 | 2018-08-07 14:38:51 -0700 | [diff] [blame] | 125 | "libminui", |
| 126 | "libverifier", |
| 127 | "libotautil", |
| 128 | "libvintf_recovery", |
| 129 | "libvintf", |
| 130 | |
| 131 | // TODO(b/80132328): Remove the dependency on static health HAL. |
| 132 | "libhealthd.default", |
| 133 | "android.hardware.health@2.0-impl", |
| 134 | "android.hardware.health@2.0", |
| 135 | "android.hardware.health@1.0", |
| 136 | "android.hardware.health@1.0-convert", |
| 137 | "libhealthstoragedefault", |
| 138 | "libhidltransport", |
| 139 | "libhidlbase", |
| 140 | "libhwbinder_noltopgo", |
| 141 | "libbatterymonitor", |
| 142 | ], |
| 143 | } |
| 144 | |
| 145 | cc_library_static { |
| 146 | name: "librecovery", |
| 147 | recovery_available: true, |
| 148 | |
| 149 | defaults: [ |
| 150 | "librecovery_defaults", |
| 151 | ], |
| 152 | |
| 153 | srcs: [ |
| 154 | "adb_install.cpp", |
| 155 | "fsck_unshare_blocks.cpp", |
| 156 | "fuse_sdcard_provider.cpp", |
| 157 | "install.cpp", |
| 158 | "recovery.cpp", |
| 159 | "roots.cpp", |
| 160 | ], |
| 161 | |
| 162 | include_dirs: [ |
| 163 | "system/vold", |
| 164 | ], |
| 165 | } |
| 166 | |
Tao Bao | d2f2ad6 | 2018-03-23 23:24:25 -0700 | [diff] [blame] | 167 | cc_library_static { |
Tao Bao | d2f2ad6 | 2018-03-23 23:24:25 -0700 | [diff] [blame] | 168 | name: "libverifier", |
Tao Bao | 818f938 | 2018-08-06 15:52:24 -0700 | [diff] [blame] | 169 | recovery_available: true, |
Tao Bao | d2f2ad6 | 2018-03-23 23:24:25 -0700 | [diff] [blame] | 170 | |
| 171 | defaults: [ |
| 172 | "recovery_defaults", |
| 173 | ], |
| 174 | |
| 175 | srcs: [ |
| 176 | "asn1_decoder.cpp", |
| 177 | "verifier.cpp", |
| 178 | ], |
| 179 | |
Tao Bao | 818f938 | 2018-08-06 15:52:24 -0700 | [diff] [blame] | 180 | shared_libs: [ |
Tao Bao | d2f2ad6 | 2018-03-23 23:24:25 -0700 | [diff] [blame] | 181 | "libbase", |
| 182 | "libcrypto", |
| 183 | "libcrypto_utils", |
Tao Bao | 818f938 | 2018-08-06 15:52:24 -0700 | [diff] [blame] | 184 | ], |
| 185 | |
| 186 | static_libs: [ |
Tao Bao | d2f2ad6 | 2018-03-23 23:24:25 -0700 | [diff] [blame] | 187 | "libotautil", |
| 188 | ], |
| 189 | } |
| 190 | |
Tao Bao | 5fc72a1 | 2018-08-07 14:38:51 -0700 | [diff] [blame] | 191 | cc_binary { |
| 192 | name: "recovery", |
| 193 | recovery: true, |
| 194 | |
| 195 | defaults: [ |
| 196 | "librecovery_defaults", |
| 197 | ], |
| 198 | |
| 199 | srcs: [ |
| 200 | "logging.cpp", |
| 201 | "recovery_main.cpp", |
| 202 | ], |
| 203 | |
| 204 | shared_libs: [ |
Tao Bao | 7d2a63a | 2018-08-13 11:15:29 -0700 | [diff] [blame] | 205 | "libminadbd_services", |
Tao Bao | 5fc72a1 | 2018-08-07 14:38:51 -0700 | [diff] [blame] | 206 | "librecovery_ui", |
| 207 | ], |
| 208 | |
| 209 | static_libs: [ |
| 210 | "librecovery", |
| 211 | "librecovery_ui_default", |
| 212 | ], |
| 213 | |
| 214 | required: [ |
| 215 | "e2fsdroid.recovery", |
| 216 | "librecovery_ui_ext", |
| 217 | "mke2fs.conf", |
| 218 | "mke2fs.recovery", |
| 219 | "recovery_deps", |
| 220 | ], |
| 221 | } |
| 222 | |
Tao Bao | d2f2ad6 | 2018-03-23 23:24:25 -0700 | [diff] [blame] | 223 | // The dynamic executable that runs after /data mounts. |
| 224 | cc_binary { |
| 225 | name: "recovery-persist", |
| 226 | |
| 227 | defaults: [ |
| 228 | "recovery_defaults", |
| 229 | ], |
| 230 | |
| 231 | srcs: [ |
Jerry Zhang | 152933a | 2018-05-02 16:56:00 -0700 | [diff] [blame] | 232 | "logging.cpp", |
Tao Bao | d2f2ad6 | 2018-03-23 23:24:25 -0700 | [diff] [blame] | 233 | "recovery-persist.cpp", |
Tao Bao | d2f2ad6 | 2018-03-23 23:24:25 -0700 | [diff] [blame] | 234 | ], |
| 235 | |
| 236 | shared_libs: [ |
| 237 | "libbase", |
| 238 | "liblog", |
| 239 | ], |
| 240 | |
Jerry Zhang | 152933a | 2018-05-02 16:56:00 -0700 | [diff] [blame] | 241 | static_libs: [ |
| 242 | "libotautil", |
| 243 | ], |
| 244 | |
Tao Bao | d2f2ad6 | 2018-03-23 23:24:25 -0700 | [diff] [blame] | 245 | init_rc: [ |
| 246 | "recovery-persist.rc", |
| 247 | ], |
| 248 | } |
| 249 | |
| 250 | // The dynamic executable that runs at init. |
| 251 | cc_binary { |
| 252 | name: "recovery-refresh", |
| 253 | |
| 254 | defaults: [ |
| 255 | "recovery_defaults", |
| 256 | ], |
| 257 | |
| 258 | srcs: [ |
Jerry Zhang | 152933a | 2018-05-02 16:56:00 -0700 | [diff] [blame] | 259 | "logging.cpp", |
Tao Bao | d2f2ad6 | 2018-03-23 23:24:25 -0700 | [diff] [blame] | 260 | "recovery-refresh.cpp", |
Tao Bao | d2f2ad6 | 2018-03-23 23:24:25 -0700 | [diff] [blame] | 261 | ], |
| 262 | |
| 263 | shared_libs: [ |
| 264 | "libbase", |
| 265 | "liblog", |
| 266 | ], |
| 267 | |
Jerry Zhang | 152933a | 2018-05-02 16:56:00 -0700 | [diff] [blame] | 268 | static_libs: [ |
| 269 | "libotautil", |
| 270 | ], |
| 271 | |
Tao Bao | d2f2ad6 | 2018-03-23 23:24:25 -0700 | [diff] [blame] | 272 | init_rc: [ |
| 273 | "recovery-refresh.rc", |
| 274 | ], |
| 275 | } |