blob: 5afe66c3b3b2c1547e88895155e63763a2f79d2d [file]
load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
licenses(["notice"])
bzl_library(
name = "private",
srcs = ["native.bzl"],
visibility = ["//java:__subpackages__"],
)
# Exposed for use by the protobuf.
bzl_library(
name = "proto_support",
srcs = ["proto_support.bzl"],
visibility = ["//visibility:public"],
deps = [":private"],
)
filegroup(
name = "srcs",
srcs = glob(["**"]),
visibility = ["//java:__pkg__"],
)
filegroup(
name = "for_bazel_tests",
testonly = 1,
srcs = [
"BUILD",
":private",
":proto_support",
],
visibility = ["//java:__pkg__"],
)