blob: ea893a075ac7cb9f930e836bcffbca13f7e4be39 [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
xunchang95d67322019-04-05 16:16:07 -070022 header_libs: [
23 "libminadbd_headers",
24 ],
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",
35 "libhidltransport",
36 "liblog",
37 "libselinux",
38 "libtinyxml2",
39 "libutils",
40 "libz",
41 "libziparchive",
42 ],
43
44 static_libs: [
45 "libotautil",
46
47 // external dependencies
48 "libvintf_recovery",
49 "libvintf",
50 "libfstab",
51 ],
52}
53
Tao Bao2f8afba2019-04-08 11:26:11 -070054cc_library_static {
xunchang24788852019-03-22 16:08:52 -070055 name: "libinstall",
56 recovery_available: true,
57
58 defaults: [
59 "libinstall_defaults",
60 ],
61
62 srcs: [
63 "adb_install.cpp",
64 "asn1_decoder.cpp",
65 "fuse_sdcard_install.cpp",
66 "install.cpp",
67 "package.cpp",
68 "verifier.cpp",
xunchang388d2532019-04-12 16:22:15 -070069 "wipe_data.cpp",
xunchang24788852019-03-22 16:08:52 -070070 ],
71
72 shared_libs: [
73 "librecovery_ui",
74 ],
75
76 export_include_dirs: [
77 "include",
78 ],
79
80 export_shared_lib_headers: [
81 "librecovery_ui",
82 ],
83}