blob: 063366e5e98024165e367f4f6b3b9f769f862adc [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
Tianjie Xu76e165d2019-05-30 10:24:47 -070084 target: {
85 darwin: {
86 enabled: false,
87 },
88 },
89
Tianjie Xuc1a5e262019-05-22 14:34:12 -070090 export_include_dirs: [
91 "include",
92 ],
93}
94
95cc_library_static {
96 name: "libupdater_device",
97
98 defaults: [
99 "recovery_defaults",
100 "libupdater_defaults",
101 "libupdater_device_defaults",
102 ],
103
104 srcs: [
105 "dynamic_partitions.cpp",
Tianjie Xu1536db82019-05-14 10:54:43 -0700106 "updater_runtime.cpp",
Tianjie Xud1188332019-05-24 16:08:45 -0700107 "updater_runtime_dynamic_partitions.cpp",
Tao Baoef5e38f2018-07-24 15:34:39 -0700108 ],
109
Tianjie Xuc1a5e262019-05-22 14:34:12 -0700110 static_libs: [
111 "libupdater_core",
112 ],
113
Tao Baoef5e38f2018-07-24 15:34:39 -0700114 include_dirs: [
115 "external/e2fsprogs/misc",
116 ],
117
118 export_include_dirs: [
119 "include",
120 ],
121}
Tianjie Xuc1a5e262019-05-22 14:34:12 -0700122
123cc_library_host_static {
124 name: "libupdater_host",
125
126 defaults: [
127 "recovery_defaults",
128 "libupdater_defaults",
129 ],
130
131 srcs: [
Tianjie Xu74b0f7c2019-05-22 13:59:57 -0700132 "build_info.cpp",
Tianjie Xud1188332019-05-24 16:08:45 -0700133 "dynamic_partitions.cpp",
Tianjie Xuc1a5e262019-05-22 14:34:12 -0700134 "simulator_runtime.cpp",
135 "target_files.cpp",
136 ],
137
138 static_libs: [
139 "libupdater_core",
140 "libfstab",
Tianjie Xu74b0f7c2019-05-22 13:59:57 -0700141 "libc++fs",
Tianjie Xuc1a5e262019-05-22 14:34:12 -0700142 ],
143
Tianjie Xu76e165d2019-05-30 10:24:47 -0700144 target: {
145 darwin: {
146 enabled: false,
147 },
148 },
149
Tianjie Xuc1a5e262019-05-22 14:34:12 -0700150 export_include_dirs: [
151 "include",
152 ],
153}