Add bzl_library build targets.

The targets seem to be required for using "stardoc_with_diff_test" in
rules_ts_proto.
This commit is contained in:
Red Daly 2023-01-31 21:13:09 -08:00
parent bbb81931a5
commit 1ff4d46b8d
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,10 @@
load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
bzl_library(
name = "defs",
srcs = ["defs.bzl"],
visibility = ["//visibility:public"],
deps = [
"//internal",
],
)

View File

@ -0,0 +1,17 @@
load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
bzl_library(
name = "internal",
srcs = [
"common.bzl",
"compile.bzl",
"filter_files.bzl",
"plugin.bzl",
"protoc.bzl",
"providers.bzl",
],
visibility = ["//:__subpackages__"],
deps = [
"@rules_proto//proto:defs",
],
)