blob: d713942698160a06dd00700b40244a7e3311fd67 [file] [log] [blame]
Tao Baod2f2ad62018-03-23 23:24:25 -07001// 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
Bob Badour29be3f62021-02-12 18:00:57 -080015// *** THIS PACKAGE HAS SPECIAL LICENSING CONDITIONS. PLEASE
16// CONSULT THE OWNERS AND opensource-licensing@google.com BEFORE
17// DEPENDING ON IT IN YOUR PROJECT. ***
18package {
19 default_applicable_licenses: ["bootable_recovery_license"],
20}
21
22// Added automatically by a large-scale-change that took the approach of
23// 'apply every license found to every target'. While this makes sure we respect
24// every license restriction, it may not be entirely correct.
25//
26// e.g. GPL in an MIT project might only apply to the contrib/ directory.
27//
28// Please consider splitting the single license below into multiple licenses,
29// taking care not to lose any license_kind information, and overriding the
30// default license using the 'licenses: [...]' property on targets as needed.
31//
32// For unused files, consider creating a 'fileGroup' with "//visibility:private"
33// to attach the license to, and including a comment whether the files may be
34// used in the current project.
35// See: http://go/android-license-faq
36license {
37 name: "bootable_recovery_license",
38 visibility: [":__subpackages__"],
39 license_kinds: [
40 "SPDX-license-identifier-Apache-2.0",
41 "SPDX-license-identifier-MIT",
42 "SPDX-license-identifier-OFL", // by exception only
43 ],
44 license_text: [
45 "NOTICE",
46 ],
47}
48
Tao Baod2f2ad62018-03-23 23:24:25 -070049cc_defaults {
50 name: "recovery_defaults",
51
52 cflags: [
Tao Bao818f9382018-08-06 15:52:24 -070053 "-D_FILE_OFFSET_BITS=64",
54
55 // Must be the same as RECOVERY_API_VERSION.
56 "-DRECOVERY_API_VERSION=3",
57
Tao Baod2f2ad62018-03-23 23:24:25 -070058 "-Wall",
59 "-Werror",
60 ],
61}
62
Hridya Valsaraju20c81b32018-07-27 22:09:12 -070063cc_library_static {
64 name: "librecovery_fastboot",
65 recovery_available: true,
66 defaults: [
67 "recovery_defaults",
68 ],
69
70 srcs: [
71 "fastboot/fastboot.cpp",
72 ],
73
74 shared_libs: [
75 "libbase",
76 "libbootloader_message",
77 "libcutils",
78 "liblog",
Tianjie Xu8f397302018-08-20 13:40:47 -070079 "librecovery_ui",
Hridya Valsaraju20c81b32018-07-27 22:09:12 -070080 ],
81
82 static_libs: [
83 "librecovery_ui_default",
84 ],
85}
86
Tao Bao5fc72a12018-08-07 14:38:51 -070087cc_defaults {
88 name: "librecovery_defaults",
89
90 defaults: [
91 "recovery_defaults",
92 ],
93
94 shared_libs: [
David Anderson89d2d052019-10-15 13:22:20 -070095 "android.hardware.boot@1.0",
96 "android.hardware.boot@1.1",
Kelvin Zhangfa554fe2022-04-01 14:17:10 -070097 "android.hardware.boot-V1-ndk",
98 "libboot_control_client",
Tao Bao5fc72a12018-08-07 14:38:51 -070099 "libbase",
100 "libbootloader_message",
101 "libcrypto",
Tao Bao5fc72a12018-08-07 14:38:51 -0700102 "libcutils",
Tao Bao5fc72a12018-08-07 14:38:51 -0700103 "libfs_mgr",
David Anderson89d2d052019-10-15 13:22:20 -0700104 "liblp",
Tao Bao5fc72a12018-08-07 14:38:51 -0700105 "liblog",
David Anderson89d2d052019-10-15 13:22:20 -0700106 "libprotobuf-cpp-lite",
Tao Bao5fc72a12018-08-07 14:38:51 -0700107 "libziparchive",
108 ],
109
110 static_libs: [
Tianjie Xu58a27692019-08-06 12:32:05 -0700111 "libc++fs",
Tao Bao0deed332019-04-08 11:26:11 -0700112 "libinstall",
Hridya Valsaraju20c81b32018-07-27 22:09:12 -0700113 "librecovery_fastboot",
Tao Bao5fc72a12018-08-07 14:38:51 -0700114 "libminui",
Tao Baoe3f09a72019-10-01 11:55:36 -0700115 "librecovery_utils",
Tao Bao5fc72a12018-08-07 14:38:51 -0700116 "libotautil",
David Anderson89d2d052019-10-15 13:22:20 -0700117 "libsnapshot_nobinder",
Kelvin Zhang58bbe3c2022-04-12 10:46:56 -0700118 "libsnapshot_cow",
119 "liblz4",
Yifan Hongacf7d1b2020-04-16 11:04:10 -0700120 "update_metadata-protos",
Tao Bao5fc72a12018-08-07 14:38:51 -0700121 ],
122}
123
124cc_library_static {
125 name: "librecovery",
126 recovery_available: true,
127
128 defaults: [
129 "librecovery_defaults",
130 ],
131
132 srcs: [
Tao Bao5fc72a12018-08-07 14:38:51 -0700133 "recovery.cpp",
Tao Bao5fc72a12018-08-07 14:38:51 -0700134 ],
135
Tianjie Xu8f397302018-08-20 13:40:47 -0700136 shared_libs: [
137 "librecovery_ui",
138 ],
xunchang37304f32019-03-12 12:40:14 -0700139}
140
Tom Cherry24dd3142019-11-04 15:17:17 -0800141prebuilt_etc {
142 name: "init_recovery.rc",
143 filename: "init.rc",
144 src: "etc/init.rc",
145 sub_dir: "init/hw",
146 recovery: true,
147}
148
Tao Bao5fc72a12018-08-07 14:38:51 -0700149cc_binary {
150 name: "recovery",
151 recovery: true,
152
153 defaults: [
xunchang24788852019-03-22 16:08:52 -0700154 "libinstall_defaults",
Tao Bao5fc72a12018-08-07 14:38:51 -0700155 "librecovery_defaults",
Tao Bao832c9cd2019-09-27 23:32:00 -0700156 "librecovery_utils_defaults",
Tao Bao5fc72a12018-08-07 14:38:51 -0700157 ],
158
159 srcs: [
Tao Bao5fc72a12018-08-07 14:38:51 -0700160 "recovery_main.cpp",
161 ],
162
163 shared_libs: [
Jack Wu6b39dee2022-11-24 20:45:47 +0800164 "android.hardware.health-V2-ndk", // from librecovery_utils
Kelvin Zhangfa554fe2022-04-01 14:17:10 -0700165 "android.hardware.boot-V1-ndk",
Tao Bao5fc72a12018-08-07 14:38:51 -0700166 "librecovery_ui",
167 ],
168
169 static_libs: [
170 "librecovery",
171 "librecovery_ui_default",
172 ],
173
174 required: [
175 "e2fsdroid.recovery",
Tom Cherry24dd3142019-11-04 15:17:17 -0800176 "init_recovery.rc",
Tao Bao5fc72a12018-08-07 14:38:51 -0700177 "librecovery_ui_ext",
xunchang34690ce2019-04-05 16:16:07 -0700178 "minadbd",
Tao Bao7c074d92018-08-21 12:31:51 -0700179 "mke2fs.conf.recovery",
Tao Bao5fc72a12018-08-07 14:38:51 -0700180 "mke2fs.recovery",
181 "recovery_deps",
Tom Cherry24dd3142019-11-04 15:17:17 -0800182 "ueventd.rc.recovery",
Tao Bao5fc72a12018-08-07 14:38:51 -0700183 ],
184}
185
Tao Baod2f2ad62018-03-23 23:24:25 -0700186// The dynamic executable that runs after /data mounts.
187cc_binary {
188 name: "recovery-persist",
189
190 defaults: [
191 "recovery_defaults",
192 ],
193
194 srcs: [
195 "recovery-persist.cpp",
Tao Baod2f2ad62018-03-23 23:24:25 -0700196 ],
197
198 shared_libs: [
199 "libbase",
200 "liblog",
201 ],
202
Jerry Zhang152933a2018-05-02 16:56:00 -0700203 static_libs: [
Tao Baoe3f09a72019-10-01 11:55:36 -0700204 "librecovery_utils",
Jerry Zhang152933a2018-05-02 16:56:00 -0700205 ],
206
Tao Baod2f2ad62018-03-23 23:24:25 -0700207 init_rc: [
208 "recovery-persist.rc",
209 ],
210}
211
212// The dynamic executable that runs at init.
213cc_binary {
214 name: "recovery-refresh",
215
216 defaults: [
217 "recovery_defaults",
218 ],
219
220 srcs: [
221 "recovery-refresh.cpp",
Tao Baod2f2ad62018-03-23 23:24:25 -0700222 ],
223
224 shared_libs: [
225 "libbase",
226 "liblog",
227 ],
228
Jerry Zhang152933a2018-05-02 16:56:00 -0700229 static_libs: [
Tao Baoe3f09a72019-10-01 11:55:36 -0700230 "librecovery_utils",
Jerry Zhang152933a2018-05-02 16:56:00 -0700231 ],
232
Tao Baod2f2ad62018-03-23 23:24:25 -0700233 init_rc: [
234 "recovery-refresh.rc",
235 ],
236}
Tao Baoef5e38f2018-07-24 15:34:39 -0700237
238filegroup {
239 name: "res-testdata",
240
241 srcs: [
242 "res-*/images/*_text.png",
243 ],
244}