-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathBUILD.bazel
64 lines (57 loc) · 1.69 KB
/
BUILD.bazel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
load("@rules_proto//proto:defs.bzl", "proto_library")
load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library")
#Copyright 2021 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Supporting infrastructure for implementing and testing PINS.
#
load("@com_github_grpc_grpc//bazel:cc_grpc_library.bzl", "cc_grpc_library")
package(
default_visibility = ["//visibility:public"],
licenses = ["notice"],
)
proto_library(
name = "file_proto",
srcs = ["file.proto"],
deps = [
"//common:common_proto",
"//types:types_proto",
],
)
cc_proto_library(
name = "file_cc_proto",
deps = [":file_proto"],
)
cc_grpc_library(
name = "file_cc_grpc_proto",
srcs = [":file_proto"],
grpc_only = True,
deps = [":file_cc_proto"],
)
go_proto_library(
name = "file_go_proto",
compilers = ["@io_bazel_rules_go//proto:go_grpc"],
importpath = "github.com/openconfig/gnoi/file",
proto = ":file_proto",
deps = [
"//common:common_go_proto",
"//types:types_go_proto",
],
)
go_library(
name = "file",
embed = [":file_go_proto"],
importpath = "github.com/openconfig/gnoi/file",
)