Skip to content

Commit

Permalink
Move //elisp:bazel_tools_bzl target into ‘private’ package
Browse files Browse the repository at this point in the history
  • Loading branch information
phst committed Nov 14, 2024
1 parent 2939d24 commit ad0274e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions docs/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ stardoc(
input = "//elisp:repositories.bzl",
tags = STARDOC_TAGS,
deps = [
"//elisp:bazel_tools_bzl",
"//private:bazel_tools_bzl",
"//private:repositories",
],
)
Expand All @@ -120,8 +120,8 @@ stardoc(
input = "//elisp:extensions.bzl",
tags = STARDOC_TAGS,
deps = [
"//elisp:bazel_tools_bzl",
"//elisp:repositories",
"//private:bazel_tools_bzl",
"//private:repositories",
],
)
Expand Down
12 changes: 1 addition & 11 deletions elisp/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ bzl_library(
srcs = ["repositories.bzl"],
visibility = ["//docs:__pkg__"],
deps = [
":bazel_tools_bzl",
"//private:bazel_tools_bzl",
"//private:repositories",
],
)
Expand All @@ -141,16 +141,6 @@ bzl_library(
],
)

bzl_library(
name = "bazel_tools_bzl",
srcs = ["@bazel_tools//tools:bzl_srcs"],
visibility = [
"//docs:__pkg__",
"//emacs:__pkg__",
"//private:__pkg__",
],
)

cc_binary(
name = "launcher",
testonly = True,
Expand Down
10 changes: 10 additions & 0 deletions private/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -116,3 +116,13 @@ config_setting(
"//emacs:__pkg__",
],
)

bzl_library(
name = "bazel_tools_bzl",
srcs = ["@bazel_tools//tools:bzl_srcs"],
visibility = [
"//docs:__pkg__",
"//elisp:__pkg__",
"//emacs:__pkg__",
],
)

0 comments on commit ad0274e

Please sign in to comment.