blob: 9a36ebbb765e1aa7f5bfdb011085f47c25514cbd [file] [log] [blame]
Tao Bao673bb6f2018-08-03 20:56: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_library_static {
16 name: "libupdater",
17
18 defaults: [
19 "recovery_defaults",
20 ],
21
22 srcs: [
23 "blockimg.cpp",
24 "commands.cpp",
25 "install.cpp",
26 ],
27
28 include_dirs: [
29 "external/e2fsprogs/misc",
30 ],
31
32 export_include_dirs: [
33 "include",
34 ],
35
36 static_libs: [
37 "libapplypatch",
38 "libbootloader_message",
39 "libbspatch",
40 "libedify",
41 "libotafault",
42 "libotautil",
43 "libext4_utils",
44 "libfec",
45 "libfec_rs",
46 "libverity_tree",
47 "libfs_mgr",
48 "libgtest_prod",
49 "liblog",
50 "libselinux",
51 "libsparse",
52 "libsquashfs_utils",
53 "libbrotli",
54 "libbz",
55 "libziparchive",
56 "libz",
57 "libbase",
58 "libcrypto",
59 "libcrypto_utils",
60 "libcutils",
61 "libutils",
62 "libtune2fs",
63
64 "libext2_com_err",
65 "libext2_blkid",
66 "libext2_quota",
67 "libext2_uuid",
68 "libext2_e2p",
69 "libext2fs",
70 ],
71}