aboutsummaryrefslogtreecommitdiff
path: root/docs/go/core/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'docs/go/core/BUILD.bazel')
-rw-r--r--docs/go/core/BUILD.bazel22
1 files changed, 22 insertions, 0 deletions
diff --git a/docs/go/core/BUILD.bazel b/docs/go/core/BUILD.bazel
new file mode 100644
index 00000000..b43a6d9e
--- /dev/null
+++ b/docs/go/core/BUILD.bazel
@@ -0,0 +1,22 @@
+load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
+
+exports_files([
+ "rules.md",
+ "rules.bzl",
+])
+
+bzl_library(
+ name = "rules",
+ srcs = ["rules.bzl"],
+ visibility = ["//visibility:public"],
+ deps = [
+ "//go/private:rpath",
+ "//go/private/rules:binary",
+ "//go/private/rules:cross",
+ "//go/private/rules:library",
+ "//go/private/rules:library.bzl",
+ "//go/private/rules:source",
+ "//go/private/rules:test",
+ "//go/private/tools:path",
+ ],
+)