-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUILD
More file actions
37 lines (33 loc) · 813 Bytes
/
BUILD
File metadata and controls
37 lines (33 loc) · 813 Bytes
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
load("@protobuf//bazel:proto_descriptor_set.bzl", "proto_descriptor_set")
load("@protobuf//bazel:proto_library.bzl", "proto_library")
exports_files(
[
"LICENSE",
],
visibility = ["//visibility:public"],
)
proto_library(
name = "engflowapis",
visibility = ["//visibility:public"],
deps = [
"//engflow",
],
)
# Proto descriptor set for all APIs and types defined in engflowapis (including
# all transitive dependencies).
proto_descriptor_set(
name = "proto_descriptor_set",
visibility = ["//visibility:public"],
deps = [
":engflowapis",
],
)
alias(
name = "protos",
actual = ":engflowapis",
deprecation = "Please depend on ':engflowapis' instead.",
tags = [
"manual",
],
visibility = ["//visibility:public"],
)