aboutsummaryrefslogtreecommitdiff
path: root/proto/private/rules/BUILD
blob: 0d787851416bfd9879239309b4e876b1072fcf6e (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
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",
    ],
    visibility = [
        "//proto:__subpackages__",
    ],
)