This repository was archived by the owner on Jan 14, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathBUILD
More file actions
61 lines (55 loc) · 1.38 KB
/
BUILD
File metadata and controls
61 lines (55 loc) · 1.38 KB
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
load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
bzl_library(
name = "defs",
srcs = [
"defs.bzl",
],
visibility = ["//visibility:public"],
deps = [
":proto_common",
":proto_lang_toolchain",
":proto_toolchain",
"//proto/private/rules:proto_descriptor_set",
"@com_google_protobuf//bazel:proto_library_bzl",
],
)
bzl_library(
name = "repositories",
srcs = ["repositories.bzl"],
visibility = ["//visibility:public"],
)
bzl_library(
name = "proto_lang_toolchain",
srcs = [
"proto_lang_toolchain.bzl",
],
deps = [
"@com_google_protobuf//bazel/common:proto_lang_toolchain_info_bzl",
"@com_google_protobuf//bazel/toolchains:proto_lang_toolchain_bzl",
],
)
bzl_library(
name = "proto_common",
srcs = [
"proto_common.bzl",
],
deps = [
"@com_google_protobuf//bazel/common:proto_common_bzl",
],
)
bzl_library(
name = "proto_toolchain",
srcs = [
"proto_toolchain.bzl",
],
visibility = ["//visibility:public"],
deps = [
"@com_google_protobuf//bazel/toolchains:proto_toolchain_bzl",
],
)
# Toolchain type provided by proto_toolchain rule and used by proto_library
alias(
name = "toolchain_type",
actual = "@com_google_protobuf//bazel/private:proto_toolchain_type",
visibility = ["//visibility:public"],
)