blob: f43f46172e21a473804d6b3c47acff68c04019a3 [file] [log] [blame]
Primiano Tucci91cc11d2017-11-14 18:34:24 +00001# Copyright (C) 2017 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
15import("//build/proto_library.gni")
16
17# Generates .ipc.{h,cc} stubs for IPC services defined in .proto files.
18template("ipc_library") {
19 proto_library(target_name) {
20 generator_plugin_label = "//ipc/src/protoc_plugin:ipc_plugin"
21 generator_plugin_suffix = ".ipc"
22 public_configs = [ "//ipc:config" ]
Primiano Tuccic2025af2017-11-20 12:47:49 +000023 deps = [
24 "//ipc",
25 ]
Primiano Tucci782374f2017-11-27 16:25:20 +000026 proto_out_dir = "protos_lite"
Primiano Tucci91cc11d2017-11-14 18:34:24 +000027 forward_variables_from(invoker,
28 [
29 "defines",
30 "include_dirs",
31 "proto_in_dir",
32 "proto_out_dir",
33 "sources",
34 "testonly",
35 "visibility",
36 ])
37 }
38}