blob: d7c075e0ef453e875a8fbf6d8ad4fecd3e64130e [file] [log] [blame]
Andrew Scull1c02d642017-09-11 17:54:56 +01001//
2// Copyright (C) 2017 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15//
16
Andrew Scull1c02d642017-09-11 17:54:56 +010017cc_library_headers {
18 name: "nos_headers",
Andrew Scull56ffcc42018-01-17 11:58:38 +000019 defaults: ["nos_cc_host_supported_defaults"],
Andrew Scull1c02d642017-09-11 17:54:56 +010020 export_include_dirs: ["nugget/include"],
21}
22
23cc_defaults {
Andrew Scullaf221e32017-10-12 13:00:53 +010024 name: "nos_proto_defaults",
Andrew Scull1a48a032017-09-26 17:33:22 +010025 cflags: [
Andrew Scull1a48a032017-09-26 17:33:22 +010026 "-Wno-unused-parameter",
27 ],
Andrew Scullaf221e32017-10-12 13:00:53 +010028}
29
30cc_defaults {
31 name: "nos_app_defaults",
32 defaults: ["nos_proto_defaults"],
Andrew Scull87a2caf2017-10-11 14:07:24 +010033 header_libs: ["nos_headers"],
Andrew Scullaf221e32017-10-12 13:00:53 +010034 shared_libs: [
35 "libnos",
36 "libprotobuf-cpp-full",
37 ],
Andrew Scull1c02d642017-09-11 17:54:56 +010038}
39
40cc_defaults {
41 name: "nos_app_service_defaults",
42 defaults: [
43 "nos_app_defaults",
Andrew Scull56ffcc42018-01-17 11:58:38 +000044 "nos_cc_defaults",
Andrew Scull1c02d642017-09-11 17:54:56 +010045 ],
Andrew Scullaf221e32017-10-12 13:00:53 +010046 shared_libs: ["libnosprotos"],
47 export_shared_lib_headers: ["libnosprotos"],
Andrew Scull1c02d642017-09-11 17:54:56 +010048}
49
50// Soong doesn't allow adding plugins to a protobuf compilation so we need to
51// invoke it directly. If we could pass a plugin, it could use insertion points
52// in the .pb.{cc,h} files rather than needing to generate new .client.{cpp,h}
53// files for each service.
Garret Kelly844f4e12019-09-20 16:13:24 -040054GEN_SERVICE = "$(location aprotoc) --plugin=protoc-gen-nos-client-cpp=$(location protoc-gen-nos-client-cpp) $(in) -Iexternal/protobuf/src -Iexternal/nos/host/generic/nugget/proto"
Andrew Scull1c02d642017-09-11 17:54:56 +010055
56GEN_SERVICE_SOURCE = GEN_SERVICE + " --nos-client-cpp_out=source:$(genDir) "
57GEN_SERVICE_HEADER = GEN_SERVICE + " --nos-client-cpp_out=header:$(genDir) "
58GEN_SERVICE_MOCK = GEN_SERVICE + " --nos-client-cpp_out=mock:$(genDir) "
Andrew Sculld9b1de22018-03-26 14:18:35 +010059
60// A special target to be statically linkeed into recovery which is a system
61// (not vendor) component.
62cc_library_static {
63 name: "libnos_for_recovery",
64 cflags: [
65 "-Wall",
66 "-Wextra",
67 "-Werror",
68 "-Wno-zero-length-array",
69 ],
70 export_include_dirs: [
71 "nugget/include",
72 "libnos/include",
73 "libnos_datagram/include",
74 "libnos_transport/include",
75 ],
76 srcs: [
77 "libnos/debug.cpp",
78 "libnos_transport/transport.c",
Andrew Scull3fc6cfe2018-02-22 11:09:51 -080079 "libnos_transport/crc16.c",
80 ],
81 static_libs: [
82 "libbase",
Andrew Sculld9b1de22018-03-26 14:18:35 +010083 ],
84}
Garret Kelly844f4e12019-09-20 16:13:24 -040085
josephjang64a6c362020-09-23 11:02:16 +080086// A special target to be statically linkeed into fastboot hal.
87cc_library_static {
88 name: "libnos_for_fastboot",
89 recovery: true,
90 cflags: [
91 "-Wall",
92 "-Wextra",
93 "-Werror",
94 "-Wno-zero-length-array",
95 ],
96 export_include_dirs: [
97 "nugget/include",
98 "libnos/include",
99 "libnos_datagram/include",
100 "libnos_transport/include",
101 ],
102 srcs: [
103 "libnos/debug.cpp",
104 "libnos_transport/transport.c",
105 "libnos_transport/crc16.c",
106 ],
107 static_libs: [
108 "libbase",
109 ],
110}
111
Garret Kelly844f4e12019-09-20 16:13:24 -0400112// A special target to be statically linkeed into recovery which is a system
113// (not vendor) component.
114cc_library_static {
115 name: "libnos_citadel_for_recovery",
116 cflags: [
117 "-Wall",
118 "-Wextra",
119 "-Werror",
120 ],
121 srcs: [
122 ":libnos_client",
123 "libnos_datagram/citadel.c",
124 ],
125 static_libs: [
126 "libnos_for_recovery",
127 ],
128}
129
josephjang64a6c362020-09-23 11:02:16 +0800130// A special target to be statically linkeed into fastboot hal.
131cc_library_static {
132 name: "libnos_citadel_for_fastboot",
133 recovery: true,
134 cflags: [
135 "-Wall",
136 "-Wextra",
137 "-Werror",
138 ],
139 srcs: [
140 ":libnos_client",
141 "libnos_datagram/citadel.c",
142 ],
143 static_libs: [
144 "libnos_for_fastboot",
145 ],
146}
147
Garret Kelly844f4e12019-09-20 16:13:24 -0400148// Language and vendor related defaults
149cc_defaults {
150 name: "nos_cc_defaults",
151 clang: true,
152 cflags: [
153 "-pedantic",
154 "-Wall",
155 "-Wextra",
156 "-Werror",
157 "-Wno-zero-length-array",
158 ],
159 conlyflags: [
160 "-std=c11",
161 ],
162 vendor: true,
163 owner: "google",
164}
165
166// Defaults for components under the hw subdirectory
167cc_defaults {
168 name: "nos_cc_hw_defaults",
169 defaults: ["nos_cc_defaults"],
170 relative_install_path: "hw",
171}
172
173// Defaults for components shared between the host and device
174cc_defaults {
175 name: "nos_cc_host_supported_defaults",
176 defaults: ["nos_cc_defaults"],
177 host_supported: true,
178}
179
180cc_library {
181 name: "libnos_client_citadel",
182 srcs: [":libnos_client"],
183 defaults: [
184 "libnos_client_defaults",
185 "nos_cc_defaults",
186 ],
187 shared_libs: ["libnos_datagram_citadel"],
188}