Skip to content

Commit b9902c8

Browse files
committed
cleanup
1 parent 6432149 commit b9902c8

File tree

12 files changed

+1496
-794
lines changed

12 files changed

+1496
-794
lines changed

docs/BUILD.bazel

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,8 @@ sphinx_stardocs(
9797
"//python/cc:py_cc_toolchain_bzl",
9898
"//python/cc:py_cc_toolchain_info_bzl",
9999
"//python/entry_points:py_console_script_binary_bzl",
100+
"//python/private:attr_builders_bzl",
101+
"//python/private:builders_util_bzl",
100102
"//python/private:py_binary_rule_bzl",
101103
"//python/private:py_cc_toolchain_rule_bzl",
102104
"//python/private:py_library_rule_bzl",

python/private/BUILD.bazel

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,20 @@ filegroup(
5151
visibility = ["//python:__pkg__"],
5252
)
5353

54+
bzl_library(
55+
name = "attr_builders_bzl",
56+
srcs = ["attr_builders.bzl"],
57+
deps = [
58+
":builders_util_bzl",
59+
"@bazel_skylib//lib:types",
60+
],
61+
)
62+
5463
bzl_library(
5564
name = "attributes_bzl",
5665
srcs = ["attributes.bzl"],
5766
deps = [
67+
":attr_builders_bzl",
5868
":common_bzl",
5969
":enum_bzl",
6070
":flags_bzl",
@@ -92,11 +102,20 @@ bzl_library(
92102
],
93103
)
94104

105+
bzl_library(
106+
name = "builders_util_bzl",
107+
srcs = ["builders_util.bzl"],
108+
deps = [
109+
"@bazel_skylib//lib:types",
110+
],
111+
)
112+
95113
bzl_library(
96114
name = "rule_builders_bzl",
97115
srcs = ["rule_builders.bzl"],
98116
deps = [
99117
":builders_bzl",
118+
":builders_util_bzl",
100119
"@bazel_skylib//lib:types",
101120
],
102121
)

0 commit comments

Comments
 (0)