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:
parent
bbb81931a5
commit
1ff4d46b8d
10
BUILD.bazel
10
BUILD.bazel
|
@ -0,0 +1,10 @@
|
|||
load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
|
||||
|
||||
bzl_library(
|
||||
name = "defs",
|
||||
srcs = ["defs.bzl"],
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [
|
||||
"//internal",
|
||||
],
|
||||
)
|
|
@ -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",
|
||||
],
|
||||
)
|
Loading…
Reference in New Issue