blob: a66155b3ac90582327380022d3bc43e5e1b81e20 [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
Tao Baoef5e38f2018-07-24 15:34:39 -070015cc_defaults {
16 name: "libupdater_defaults",
Tao Bao673bb6f2018-08-03 20:56:25 -070017
18 defaults: [
19 "recovery_defaults",
20 ],
21
Tao Bao673bb6f2018-08-03 20:56:25 -070022 static_libs: [
23 "libapplypatch",
24 "libbootloader_message",
25 "libbspatch",
26 "libedify",
Tao Bao673bb6f2018-08-03 20:56:25 -070027 "libotautil",
28 "libext4_utils",
Yifan Hong8ff84d72018-12-19 16:21:55 -080029 "libdm",
Tao Bao673bb6f2018-08-03 20:56:25 -070030 "libfec",
31 "libfec_rs",
32 "libverity_tree",
Tao Bao673bb6f2018-08-03 20:56:25 -070033 "libgtest_prod",
34 "liblog",
Yifan Hong8ff84d72018-12-19 16:21:55 -080035 "liblp",
Tao Bao673bb6f2018-08-03 20:56:25 -070036 "libselinux",
37 "libsparse",
38 "libsquashfs_utils",
39 "libbrotli",
40 "libbz",
41 "libziparchive",
42 "libz",
43 "libbase",
44 "libcrypto",
45 "libcrypto_utils",
46 "libcutils",
47 "libutils",
Tianjie Xuc1a5e262019-05-22 14:34:12 -070048 ],
49}
50
51cc_defaults {
52 name: "libupdater_device_defaults",
53
54 static_libs: [
55 "libfs_mgr",
Tao Bao673bb6f2018-08-03 20:56:25 -070056 "libtune2fs",
57
58 "libext2_com_err",
59 "libext2_blkid",
60 "libext2_quota",
61 "libext2_uuid",
62 "libext2_e2p",
63 "libext2fs",
Tianjie Xuc1a5e262019-05-22 14:34:12 -070064 ]
Tao Bao673bb6f2018-08-03 20:56:25 -070065}
Tao Baoef5e38f2018-07-24 15:34:39 -070066
67cc_library_static {
Tianjie Xuc1a5e262019-05-22 14:34:12 -070068 name: "libupdater_core",
69
70 host_supported: true,
Tao Baoef5e38f2018-07-24 15:34:39 -070071
72 defaults: [
73 "recovery_defaults",
74 "libupdater_defaults",
75 ],
76
77 srcs: [
78 "blockimg.cpp",
79 "commands.cpp",
80 "install.cpp",
Tianjie Xu58d59122019-05-03 01:05:04 -070081 "updater.cpp",
Tianjie Xuc1a5e262019-05-22 14:34:12 -070082 ],
83
84 export_include_dirs: [
85 "include",
86 ],
87}
88
89cc_library_static {
90 name: "libupdater_device",
91
92 defaults: [
93 "recovery_defaults",
94 "libupdater_defaults",
95 "libupdater_device_defaults",
96 ],
97
98 srcs: [
99 "dynamic_partitions.cpp",
Tianjie Xu1536db82019-05-14 10:54:43 -0700100 "updater_runtime.cpp",
Tao Baoef5e38f2018-07-24 15:34:39 -0700101 ],
102
Tianjie Xuc1a5e262019-05-22 14:34:12 -0700103 static_libs: [
104 "libupdater_core",
105 ],
106
Tao Baoef5e38f2018-07-24 15:34:39 -0700107 include_dirs: [
108 "external/e2fsprogs/misc",
109 ],
110
111 export_include_dirs: [
112 "include",
113 ],
114}
Tianjie Xuc1a5e262019-05-22 14:34:12 -0700115
116cc_library_host_static {
117 name: "libupdater_host",
118
119 defaults: [
120 "recovery_defaults",
121 "libupdater_defaults",
122 ],
123
124 srcs: [
125 "simulator_runtime.cpp",
126 "target_files.cpp",
127 ],
128
129 static_libs: [
130 "libupdater_core",
131 "libfstab",
132 ],
133
134 export_include_dirs: [
135 "include",
136 ],
137}