blob: aa14475d8df126978b1589ead075841ee13ec01f [file] [log] [blame]
xunchang24788852019-03-22 16:08:52 -07001// Copyright (C) 2019 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: "libinstall_defaults",
17
18 defaults: [
19 "recovery_defaults",
20 ],
21
bigbiff673c7ae2020-12-02 19:44:56 -050022 cflags: [
23 //"-DRECOVERY_API_VERSION=3"
xunchang95d67322019-04-05 16:16:07 -070024 ],
25
xunchang24788852019-03-22 16:08:52 -070026 shared_libs: [
27 "libbase",
28 "libbootloader_message",
29 "libcrypto",
30 "libext4_utils",
31 "libfs_mgr",
32 "libfusesideload",
33 "libhidl-gen-utils",
34 "libhidlbase",
xunchang24788852019-03-22 16:08:52 -070035 "liblog",
36 "libselinux",
37 "libtinyxml2",
38 "libutils",
39 "libz",
40 "libziparchive",
41 ],
42
43 static_libs: [
Tao Baoe3f09a72019-10-01 11:55:36 -070044 "librecovery_utils",
xunchang24788852019-03-22 16:08:52 -070045 "libotautil",
David Anderson89d2d052019-10-15 13:22:20 -070046 "libsnapshot_nobinder",
xunchang24788852019-03-22 16:08:52 -070047
48 // external dependencies
xunchang24788852019-03-22 16:08:52 -070049 "libvintf",
xunchang24788852019-03-22 16:08:52 -070050 ],
51}
52
Tao Bao2f8afba2019-04-08 11:26:11 -070053cc_library_static {
xunchang24788852019-03-22 16:08:52 -070054 name: "libinstall",
55 recovery_available: true,
56
57 defaults: [
58 "libinstall_defaults",
59 ],
60
61 srcs: [
62 "adb_install.cpp",
63 "asn1_decoder.cpp",
Tianjie Xuf6158eb2019-06-11 16:09:07 -070064 "fuse_install.cpp",
xunchang24788852019-03-22 16:08:52 -070065 "install.cpp",
66 "package.cpp",
David Anderson89d2d052019-10-15 13:22:20 -070067 "snapshot_utils.cpp",
xunchang24788852019-03-22 16:08:52 -070068 "verifier.cpp",
xunchang388d2532019-04-12 16:22:15 -070069 "wipe_data.cpp",
Tao Bao7f19d102019-04-26 22:56:56 -070070 "wipe_device.cpp",
xunchang24788852019-03-22 16:08:52 -070071 ],
72
Tao Bao3305d482019-09-26 00:02:29 -070073 header_libs: [
74 "libminadbd_headers",
xunchang24788852019-03-22 16:08:52 -070075 ],
76
77 shared_libs: [
78 "librecovery_ui",
79 ],
80
81 export_include_dirs: [
82 "include",
83 ],
84
85 export_shared_lib_headers: [
86 "librecovery_ui",
87 ],
88}