Skip to content

Commit

Permalink
Add all_files entries for new dirs
Browse files Browse the repository at this point in the history
  • Loading branch information
achew22 committed Aug 24, 2020
1 parent 97ba01f commit 88800de
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 1 deletion.
7 changes: 6 additions & 1 deletion go/private/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@ filegroup(
filegroup(
name = "all_files",
testonly = True,
srcs = glob(["**"]),
srcs = glob(["**"]) + [
"//go/private/actions:all_files",
"//go/private/rules:all_files",
"//go/private/skylib/lib:all_files",
"//go/private/tools:all_files",
],
visibility = ["//visibility:public"],
)

Expand Down
7 changes: 7 additions & 0 deletions go/private/actions/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
load("@bazel_skylib//:bzl_library.bzl", "bzl_library")

filegroup(
name = "all_files",
testonly = True,
srcs = glob(["**"]),
visibility = ["//visibility:public"],
)

bzl_library(
name = "archive",
srcs = ["archive.bzl"],
Expand Down
7 changes: 7 additions & 0 deletions go/private/rules/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
load("@bazel_skylib//:bzl_library.bzl", "bzl_library")

filegroup(
name = "all_files",
testonly = True,
srcs = glob(["**"]),
visibility = ["//visibility:public"],
)

bzl_library(
name = "aspect",
srcs = ["aspect.bzl"],
Expand Down
7 changes: 7 additions & 0 deletions go/private/skylib/lib/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
load("@bazel_skylib//:bzl_library.bzl", "bzl_library")

filegroup(
name = "all_files",
testonly = True,
srcs = glob(["**"]),
visibility = ["//visibility:public"],
)

bzl_library(
name = "versions",
srcs = ["versions.bzl"],
Expand Down
7 changes: 7 additions & 0 deletions go/private/tools/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
load("@bazel_skylib//:bzl_library.bzl", "bzl_library")

filegroup(
name = "all_files",
testonly = True,
srcs = glob(["**"]),
visibility = ["//visibility:public"],
)

bzl_library(
name = "path",
srcs = ["path.bzl"],
Expand Down

0 comments on commit 88800de

Please sign in to comment.