aboutsummaryrefslogtreecommitdiff
path: root/proto/private/rules/BUILD
blob: 61ec70203ebd58563ab8d0b264ca7f269b506d32 (plain)
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
load("@bazel_skylib//:bzl_library.bzl", "bzl_library")

bzl_library(
    name = "proto_descriptor_set",
    srcs = [
        "proto_descriptor_set.bzl",
    ],
    visibility = [
        "//proto:__subpackages__",
    ],
    deps = [
        "//proto/private:native",
    ],
)

bzl_library(
    name = "proto_toolchain_bzl",
    srcs = [
        "proto_toolchain.bzl",
        "proto_toolchain_rule.bzl",
        "@bazel_features//:bzl_files",
    ],
    visibility = [
        "//proto:__subpackages__",
    ],
)