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 | |
Hridya Valsaraju | 20c81b3 | 2018-07-27 22:09:12 -0700 | [diff] [blame] | 29 | cc_library_static { |
| 30 | name: "librecovery_fastboot", |
| 31 | recovery_available: true, |
| 32 | defaults: [ |
| 33 | "recovery_defaults", |
| 34 | ], |
| 35 | |
| 36 | srcs: [ |
| 37 | "fastboot/fastboot.cpp", |
| 38 | ], |
| 39 | |
| 40 | shared_libs: [ |
| 41 | "libbase", |
| 42 | "libbootloader_message", |
| 43 | "libcutils", |
| 44 | "liblog", |
Tianjie Xu | 8f39730 | 2018-08-20 13:40:47 -0700 | [diff] [blame] | 45 | "librecovery_ui", |
Hridya Valsaraju | 20c81b3 | 2018-07-27 22:09:12 -0700 | [diff] [blame] | 46 | ], |
| 47 | |
| 48 | static_libs: [ |
| 49 | "librecovery_ui_default", |
| 50 | ], |
| 51 | } |
| 52 | |
Tao Bao | 5fc72a1 | 2018-08-07 14:38:51 -0700 | [diff] [blame] | 53 | cc_defaults { |
| 54 | name: "librecovery_defaults", |
| 55 | |
| 56 | defaults: [ |
| 57 | "recovery_defaults", |
| 58 | ], |
| 59 | |
| 60 | shared_libs: [ |
Yifan Hong | 056538c | 2018-07-11 17:04:12 -0700 | [diff] [blame] | 61 | "android.hardware.health@2.0", |
Tao Bao | 5fc72a1 | 2018-08-07 14:38:51 -0700 | [diff] [blame] | 62 | "libbase", |
| 63 | "libbootloader_message", |
| 64 | "libcrypto", |
Tao Bao | 5fc72a1 | 2018-08-07 14:38:51 -0700 | [diff] [blame] | 65 | "libcutils", |
Tao Bao | 5fc72a1 | 2018-08-07 14:38:51 -0700 | [diff] [blame] | 66 | "libfs_mgr", |
Tao Bao | 5fc72a1 | 2018-08-07 14:38:51 -0700 | [diff] [blame] | 67 | "liblog", |
Tao Bao | 5fc72a1 | 2018-08-07 14:38:51 -0700 | [diff] [blame] | 68 | "libziparchive", |
| 69 | ], |
| 70 | |
| 71 | static_libs: [ |
Tao Bao | 0deed33 | 2019-04-08 11:26:11 -0700 | [diff] [blame] | 72 | "libinstall", |
Hridya Valsaraju | 20c81b3 | 2018-07-27 22:09:12 -0700 | [diff] [blame] | 73 | "librecovery_fastboot", |
Tao Bao | 5fc72a1 | 2018-08-07 14:38:51 -0700 | [diff] [blame] | 74 | "libminui", |
Tao Bao | 5fc72a1 | 2018-08-07 14:38:51 -0700 | [diff] [blame] | 75 | "libotautil", |
Yifan Hong | 056538c | 2018-07-11 17:04:12 -0700 | [diff] [blame] | 76 | |
| 77 | // external dependencies |
| 78 | "libhealthhalutils", |
Tao Bao | 5fc72a1 | 2018-08-07 14:38:51 -0700 | [diff] [blame] | 79 | ], |
| 80 | } |
| 81 | |
| 82 | cc_library_static { |
| 83 | name: "librecovery", |
| 84 | recovery_available: true, |
| 85 | |
| 86 | defaults: [ |
| 87 | "librecovery_defaults", |
| 88 | ], |
| 89 | |
| 90 | srcs: [ |
Tao Bao | 5fc72a1 | 2018-08-07 14:38:51 -0700 | [diff] [blame] | 91 | "fsck_unshare_blocks.cpp", |
Tao Bao | 5fc72a1 | 2018-08-07 14:38:51 -0700 | [diff] [blame] | 92 | "recovery.cpp", |
Tao Bao | 5fc72a1 | 2018-08-07 14:38:51 -0700 | [diff] [blame] | 93 | ], |
| 94 | |
Tianjie Xu | 8f39730 | 2018-08-20 13:40:47 -0700 | [diff] [blame] | 95 | shared_libs: [ |
| 96 | "librecovery_ui", |
| 97 | ], |
xunchang | 37304f3 | 2019-03-12 12:40:14 -0700 | [diff] [blame] | 98 | } |
| 99 | |
Tao Bao | 5fc72a1 | 2018-08-07 14:38:51 -0700 | [diff] [blame] | 100 | cc_binary { |
| 101 | name: "recovery", |
| 102 | recovery: true, |
| 103 | |
| 104 | defaults: [ |
xunchang | 2478885 | 2019-03-22 16:08:52 -0700 | [diff] [blame] | 105 | "libinstall_defaults", |
Tao Bao | 5fc72a1 | 2018-08-07 14:38:51 -0700 | [diff] [blame] | 106 | "librecovery_defaults", |
| 107 | ], |
| 108 | |
| 109 | srcs: [ |
Tao Bao | 5fc72a1 | 2018-08-07 14:38:51 -0700 | [diff] [blame] | 110 | "recovery_main.cpp", |
| 111 | ], |
| 112 | |
| 113 | shared_libs: [ |
| 114 | "librecovery_ui", |
| 115 | ], |
| 116 | |
| 117 | static_libs: [ |
| 118 | "librecovery", |
| 119 | "librecovery_ui_default", |
| 120 | ], |
| 121 | |
| 122 | required: [ |
| 123 | "e2fsdroid.recovery", |
| 124 | "librecovery_ui_ext", |
xunchang | 34690ce | 2019-04-05 16:16:07 -0700 | [diff] [blame] | 125 | "minadbd", |
Tao Bao | 7c074d9 | 2018-08-21 12:31:51 -0700 | [diff] [blame] | 126 | "mke2fs.conf.recovery", |
Tao Bao | 5fc72a1 | 2018-08-07 14:38:51 -0700 | [diff] [blame] | 127 | "mke2fs.recovery", |
| 128 | "recovery_deps", |
| 129 | ], |
| 130 | } |
| 131 | |
Tao Bao | d2f2ad6 | 2018-03-23 23:24:25 -0700 | [diff] [blame] | 132 | // The dynamic executable that runs after /data mounts. |
| 133 | cc_binary { |
| 134 | name: "recovery-persist", |
| 135 | |
| 136 | defaults: [ |
| 137 | "recovery_defaults", |
| 138 | ], |
| 139 | |
| 140 | srcs: [ |
| 141 | "recovery-persist.cpp", |
Tao Bao | d2f2ad6 | 2018-03-23 23:24:25 -0700 | [diff] [blame] | 142 | ], |
| 143 | |
| 144 | shared_libs: [ |
| 145 | "libbase", |
| 146 | "liblog", |
Tianjie Xu | 2b1a464 | 2018-09-06 11:58:55 -0700 | [diff] [blame] | 147 | "libmetricslogger", |
Tao Bao | d2f2ad6 | 2018-03-23 23:24:25 -0700 | [diff] [blame] | 148 | ], |
| 149 | |
Jerry Zhang | 152933a | 2018-05-02 16:56:00 -0700 | [diff] [blame] | 150 | static_libs: [ |
| 151 | "libotautil", |
| 152 | ], |
| 153 | |
Tao Bao | d2f2ad6 | 2018-03-23 23:24:25 -0700 | [diff] [blame] | 154 | init_rc: [ |
| 155 | "recovery-persist.rc", |
| 156 | ], |
| 157 | } |
| 158 | |
| 159 | // The dynamic executable that runs at init. |
| 160 | cc_binary { |
| 161 | name: "recovery-refresh", |
| 162 | |
| 163 | defaults: [ |
| 164 | "recovery_defaults", |
| 165 | ], |
| 166 | |
| 167 | srcs: [ |
| 168 | "recovery-refresh.cpp", |
Tao Bao | d2f2ad6 | 2018-03-23 23:24:25 -0700 | [diff] [blame] | 169 | ], |
| 170 | |
| 171 | shared_libs: [ |
| 172 | "libbase", |
| 173 | "liblog", |
| 174 | ], |
| 175 | |
Jerry Zhang | 152933a | 2018-05-02 16:56:00 -0700 | [diff] [blame] | 176 | static_libs: [ |
| 177 | "libotautil", |
| 178 | ], |
| 179 | |
Tao Bao | d2f2ad6 | 2018-03-23 23:24:25 -0700 | [diff] [blame] | 180 | init_rc: [ |
| 181 | "recovery-refresh.rc", |
| 182 | ], |
| 183 | } |
Tao Bao | ef5e38f | 2018-07-24 15:34:39 -0700 | [diff] [blame] | 184 | |
| 185 | filegroup { |
| 186 | name: "res-testdata", |
| 187 | |
| 188 | srcs: [ |
| 189 | "res-*/images/*_text.png", |
| 190 | ], |
| 191 | } |