blob: 082ec58e0caf9358bd4fce450aa5532b929a6272 [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
17// Build files need to go in these directories in order for protoc to generate
18// files with the correct paths
19subdirs = [
Andrew Scull599e7912017-09-14 14:00:36 +010020 "libnos",
Andrew Scull1c021e82017-09-20 17:04:55 +010021 "libnos_datagram",
22 "libnos_transport",
Andrew Scullaf221e32017-10-12 13:00:53 +010023 "nugget/proto",
Andrew Scull1c02d642017-09-11 17:54:56 +010024]
25
26cc_library_headers {
27 name: "nos_headers",
28 defaults: ["nos_shared_cc_defaults"],
29 export_include_dirs: ["nugget/include"],
30}
31
32cc_defaults {
Andrew Scullaf221e32017-10-12 13:00:53 +010033 name: "nos_proto_defaults",
Andrew Scull1a48a032017-09-26 17:33:22 +010034 cflags: [
35 "-Wno-extended-offsetof",
36 "-Wno-unused-parameter",
37 ],
Andrew Scullaf221e32017-10-12 13:00:53 +010038}
39
40cc_defaults {
41 name: "nos_app_defaults",
42 defaults: ["nos_proto_defaults"],
Andrew Scull87a2caf2017-10-11 14:07:24 +010043 header_libs: ["nos_headers"],
Andrew Scullaf221e32017-10-12 13:00:53 +010044 shared_libs: [
45 "libnos",
46 "libprotobuf-cpp-full",
47 ],
Andrew Scull1c02d642017-09-11 17:54:56 +010048}
49
50cc_defaults {
51 name: "nos_app_service_defaults",
52 defaults: [
53 "nos_app_defaults",
54 "nos_cc_defaults",
55 ],
Andrew Scullaf221e32017-10-12 13:00:53 +010056 shared_libs: ["libnosprotos"],
57 export_shared_lib_headers: ["libnosprotos"],
Andrew Scull1c02d642017-09-11 17:54:56 +010058}
59
60// Soong doesn't allow adding plugins to a protobuf compilation so we need to
61// invoke it directly. If we could pass a plugin, it could use insertion points
62// in the .pb.{cc,h} files rather than needing to generate new .client.{cpp,h}
63// files for each service.
64GEN_SERVICE = "$(location aprotoc) --plugin=protoc-gen-nos-client-cpp=$(location protoc-gen-nos-client-cpp) $(in) -Iexternal/protobuf/src -Iexternal/libnos/nugget/proto"
65
66GEN_SERVICE_SOURCE = GEN_SERVICE + " --nos-client-cpp_out=source:$(genDir) "
67GEN_SERVICE_HEADER = GEN_SERVICE + " --nos-client-cpp_out=header:$(genDir) "
68GEN_SERVICE_MOCK = GEN_SERVICE + " --nos-client-cpp_out=mock:$(genDir) "