blob: 3c4ec4a99ddf48d71731c8d4eb8b9b11657123d2 [file] [log] [blame]
Tao Baoafb9fc22018-04-19 14:49:32 -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
Bob Badour29be3f62021-02-12 18:00:57 -080015package {
16 // See: http://go/android-license-faq
17 // A large-scale-change added 'default_applicable_licenses' to import
18 // all of the 'license_kinds' from "bootable_recovery_license"
19 // to get the below license kinds:
20 // SPDX-license-identifier-Apache-2.0
21 default_applicable_licenses: ["bootable_recovery_license"],
22}
23
Tao Baoafb9fc22018-04-19 14:49:32 -070024cc_defaults {
25 name: "update_verifier_defaults",
26
Tianjie Xu446b64b2018-09-19 15:45:28 -070027 defaults: [
28 "recovery_defaults",
Tao Baoafb9fc22018-04-19 14:49:32 -070029 ],
30
31 local_include_dirs: [
32 "include",
33 ],
34}
35
Kelvin Zhangb4b619c2021-06-03 09:33:55 -040036python_library_host {
37 name: "care_map_proto_py",
38 srcs: [
39 "care_map.proto",
40 ],
41 proto: {type: "lite", canonical_path_from_root: false},
42 version: {
43 py2: {
44 enabled: true,
45 },
46 py3: {
47 enabled: true,
48 },
49 },
50 visibility: [
51 "//build/make/tools/releasetools:__subpackages__",
52 ],
53}
54
Tao Baoafb9fc22018-04-19 14:49:32 -070055cc_library_static {
56 name: "libupdate_verifier",
57
58 defaults: [
59 "update_verifier_defaults",
60 ],
61
62 srcs: [
Tianjie Xu4d9e62d2018-05-11 10:41:44 -070063 "care_map.proto",
Tao Baoafb9fc22018-04-19 14:49:32 -070064 "update_verifier.cpp",
65 ],
66
67 export_include_dirs: [
68 "include",
69 ],
70
71 static_libs: [
72 "libotautil",
Daniel Rosenberg15f22bd2019-01-22 19:57:28 -080073 "libvold_binder",
Tao Baoafb9fc22018-04-19 14:49:32 -070074 ],
75
Akilesh Kailashdc1f6da2022-03-23 18:53:52 +000076 whole_static_libs: [
Kelvin Zhangfa554fe2022-04-01 14:17:10 -070077 "libsnapshot_snapuserd",
Akilesh Kailashdc1f6da2022-03-23 18:53:52 +000078 ],
79
Tao Baoafb9fc22018-04-19 14:49:32 -070080 shared_libs: [
81 "android.hardware.boot@1.0",
Kelvin Zhangfa554fe2022-04-01 14:17:10 -070082 "libboot_control_client",
Tao Baoafb9fc22018-04-19 14:49:32 -070083 "libbase",
84 "libcutils",
Daniel Rosenberg15f22bd2019-01-22 19:57:28 -080085 "libbinder",
86 "libutils",
Tao Baoafb9fc22018-04-19 14:49:32 -070087 ],
Tianjie Xu4d9e62d2018-05-11 10:41:44 -070088
89 proto: {
90 type: "lite",
91 export_proto_headers: true,
Tianjie Xu7e520d22018-08-13 16:41:30 -070092 },
Tao Baoafb9fc22018-04-19 14:49:32 -070093}
94
95cc_binary {
96 name: "update_verifier",
97
98 defaults: [
99 "update_verifier_defaults",
100 ],
101
102 srcs: [
103 "update_verifier_main.cpp",
104 ],
105
106 static_libs: [
107 "libupdate_verifier",
108 "libotautil",
Daniel Rosenberg15f22bd2019-01-22 19:57:28 -0800109 "libvold_binder",
Tao Baoafb9fc22018-04-19 14:49:32 -0700110 ],
111
112 shared_libs: [
113 "android.hardware.boot@1.0",
114 "libbase",
115 "libcutils",
116 "libhardware",
117 "libhidlbase",
118 "liblog",
Tianjie Xu4d9e62d2018-05-11 10:41:44 -0700119 "libprotobuf-cpp-lite",
Daniel Rosenberg15f22bd2019-01-22 19:57:28 -0800120 "libbinder",
Tao Baoafb9fc22018-04-19 14:49:32 -0700121 "libutils",
Kelvin Zhangfa554fe2022-04-01 14:17:10 -0700122 "libboot_control_client",
Tao Baoafb9fc22018-04-19 14:49:32 -0700123 ],
124
125 init_rc: [
126 "update_verifier.rc",
127 ],
128}
Tianjie Xu7e520d22018-08-13 16:41:30 -0700129
130python_binary_host {
131 name: "care_map_generator",
132
133 srcs: [
134 "care_map_generator.py",
135 "care_map.proto",
136 ],
137 libs: [
138 "python-symbol",
139 // Soong won't add "libprotobuf-python" to the dependencies if
140 // filegroup contains .proto files. So add it here explicitly.
141 "libprotobuf-python",
142 ],
143 proto: {
144 canonical_path_from_root: false,
145 },
146
147 version: {
148 py2: {
Tianjie Xu7e520d22018-08-13 16:41:30 -0700149 enabled: false,
150 embedded_launcher: false,
151 },
Krzysztof KosiƄski9c857f82021-02-24 16:02:25 -0800152 py3: {
153 enabled: true,
154 embedded_launcher: true,
155 },
Tianjie Xu7e520d22018-08-13 16:41:30 -0700156 },
157}