blob: bda36c2f54c6c49d8c6fdf2ea200ad2c77da3f92 [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
15cc_defaults {
16 name: "recovery_defaults",
17
18 cflags: [
Tao Bao818f9382018-08-06 15:52:24 -070019 "-D_FILE_OFFSET_BITS=64",
20
21 // Must be the same as RECOVERY_API_VERSION.
22 "-DRECOVERY_API_VERSION=3",
23
Tao Baod2f2ad62018-03-23 23:24:25 -070024 "-Wall",
25 "-Werror",
26 ],
27}
28
Hridya Valsaraju20c81b32018-07-27 22:09:12 -070029cc_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 Xu8f397302018-08-20 13:40:47 -070045 "librecovery_ui",
Hridya Valsaraju20c81b32018-07-27 22:09:12 -070046 ],
47
48 static_libs: [
49 "librecovery_ui_default",
50 ],
51}
52
Tao Bao5fc72a12018-08-07 14:38:51 -070053cc_defaults {
54 name: "librecovery_defaults",
55
56 defaults: [
57 "recovery_defaults",
58 ],
59
60 shared_libs: [
David Anderson89d2d052019-10-15 13:22:20 -070061 "android.hardware.boot@1.0",
62 "android.hardware.boot@1.1",
Tao Bao5fc72a12018-08-07 14:38:51 -070063 "libbase",
64 "libbootloader_message",
65 "libcrypto",
Tao Bao5fc72a12018-08-07 14:38:51 -070066 "libcutils",
Tao Bao5fc72a12018-08-07 14:38:51 -070067 "libfs_mgr",
David Anderson89d2d052019-10-15 13:22:20 -070068 "liblp",
Tao Bao5fc72a12018-08-07 14:38:51 -070069 "liblog",
David Anderson89d2d052019-10-15 13:22:20 -070070 "libprotobuf-cpp-lite",
Tao Bao5fc72a12018-08-07 14:38:51 -070071 "libziparchive",
72 ],
73
74 static_libs: [
Tianjie Xu5e6c4e92019-08-06 12:32:05 -070075 "libc++fs",
Tao Bao0deed332019-04-08 11:26:11 -070076 "libinstall",
Hridya Valsaraju20c81b32018-07-27 22:09:12 -070077 "librecovery_fastboot",
Tao Bao5fc72a12018-08-07 14:38:51 -070078 "libminui",
Tao Baoe3f09a72019-10-01 11:55:36 -070079 "librecovery_utils",
Tao Bao5fc72a12018-08-07 14:38:51 -070080 "libotautil",
David Anderson89d2d052019-10-15 13:22:20 -070081 "libsnapshot_nobinder",
Tao Bao5fc72a12018-08-07 14:38:51 -070082 ],
83}
84
85cc_library_static {
86 name: "librecovery",
87 recovery_available: true,
88
89 defaults: [
90 "librecovery_defaults",
91 ],
92
93 srcs: [
Tao Bao5fc72a12018-08-07 14:38:51 -070094 "fsck_unshare_blocks.cpp",
Tao Bao5fc72a12018-08-07 14:38:51 -070095 "recovery.cpp",
Tao Bao5fc72a12018-08-07 14:38:51 -070096 ],
97
Tianjie Xu8f397302018-08-20 13:40:47 -070098 shared_libs: [
Tianjie Xu5e6c4e92019-08-06 12:32:05 -070099 "libfusesideload",
Tianjie Xu8f397302018-08-20 13:40:47 -0700100 "librecovery_ui",
101 ],
xunchang37304f32019-03-12 12:40:14 -0700102}
103
Tom Cherrybcd3f352019-11-04 15:17:17 -0800104prebuilt_etc {
105 name: "init_recovery.rc",
106 filename: "init.rc",
107 src: "etc/init.rc",
108 sub_dir: "init/hw",
109 recovery: true,
110}
111
Tao Bao5fc72a12018-08-07 14:38:51 -0700112cc_binary {
113 name: "recovery",
114 recovery: true,
115
116 defaults: [
xunchang24788852019-03-22 16:08:52 -0700117 "libinstall_defaults",
Tao Bao5fc72a12018-08-07 14:38:51 -0700118 "librecovery_defaults",
Tao Bao832c9cd2019-09-27 23:32:00 -0700119 "librecovery_utils_defaults",
Tao Bao5fc72a12018-08-07 14:38:51 -0700120 ],
121
122 srcs: [
Tao Bao5fc72a12018-08-07 14:38:51 -0700123 "recovery_main.cpp",
124 ],
125
126 shared_libs: [
127 "librecovery_ui",
128 ],
129
130 static_libs: [
131 "librecovery",
132 "librecovery_ui_default",
133 ],
134
135 required: [
136 "e2fsdroid.recovery",
Tom Cherrybcd3f352019-11-04 15:17:17 -0800137 "init_recovery.rc",
Tao Bao5fc72a12018-08-07 14:38:51 -0700138 "librecovery_ui_ext",
xunchang34690ce2019-04-05 16:16:07 -0700139 "minadbd",
Tao Bao7c074d92018-08-21 12:31:51 -0700140 "mke2fs.conf.recovery",
Tao Bao5fc72a12018-08-07 14:38:51 -0700141 "mke2fs.recovery",
142 "recovery_deps",
Tom Cherrybcd3f352019-11-04 15:17:17 -0800143 "ueventd.rc.recovery",
Tao Bao5fc72a12018-08-07 14:38:51 -0700144 ],
145}
146
Tao Baod2f2ad62018-03-23 23:24:25 -0700147// The dynamic executable that runs after /data mounts.
148cc_binary {
149 name: "recovery-persist",
150
151 defaults: [
152 "recovery_defaults",
153 ],
154
155 srcs: [
156 "recovery-persist.cpp",
Tao Baod2f2ad62018-03-23 23:24:25 -0700157 ],
158
159 shared_libs: [
160 "libbase",
161 "liblog",
162 ],
163
Jerry Zhang152933a2018-05-02 16:56:00 -0700164 static_libs: [
Tao Baoe3f09a72019-10-01 11:55:36 -0700165 "librecovery_utils",
Jerry Zhang152933a2018-05-02 16:56:00 -0700166 ],
167
Tao Baod2f2ad62018-03-23 23:24:25 -0700168 init_rc: [
169 "recovery-persist.rc",
170 ],
171}
172
173// The dynamic executable that runs at init.
174cc_binary {
175 name: "recovery-refresh",
176
177 defaults: [
178 "recovery_defaults",
179 ],
180
181 srcs: [
182 "recovery-refresh.cpp",
Tao Baod2f2ad62018-03-23 23:24:25 -0700183 ],
184
185 shared_libs: [
186 "libbase",
187 "liblog",
188 ],
189
Jerry Zhang152933a2018-05-02 16:56:00 -0700190 static_libs: [
Tao Baoe3f09a72019-10-01 11:55:36 -0700191 "librecovery_utils",
Jerry Zhang152933a2018-05-02 16:56:00 -0700192 ],
193
Tao Baod2f2ad62018-03-23 23:24:25 -0700194 init_rc: [
195 "recovery-refresh.rc",
196 ],
197}
Tao Baoef5e38f2018-07-24 15:34:39 -0700198
199filegroup {
200 name: "res-testdata",
201
202 srcs: [
203 "res-*/images/*_text.png",
204 ],
205}