File tree Expand file tree Collapse file tree 4 files changed +24
-0
lines changed Expand file tree Collapse file tree 4 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -100,8 +100,10 @@ sphinx_stardocs(
100100 "//python:py_test_bzl" ,
101101 "//python:repositories_bzl" ,
102102 "//python/api:api_bzl" ,
103+ "//python/api:attr_builders_bzl" ,
103104 "//python/api:executables_bzl" ,
104105 "//python/api:libraries_bzl" ,
106+ "//python/api:rule_builders_bzl" ,
105107 "//python/cc:py_cc_toolchain_bzl" ,
106108 "//python/cc:py_cc_toolchain_info_bzl" ,
107109 "//python/entry_points:py_console_script_binary_bzl" ,
Original file line number Diff line number Diff line change @@ -25,6 +25,12 @@ bzl_library(
2525 deps = ["//python/private/api:api_bzl" ],
2626)
2727
28+ bzl_library (
29+ name = "attr_builders_bzl" ,
30+ srcs = ["attr_builders.bzl" ],
31+ deps = ["//python/private:attr_builders_bzl" ],
32+ )
33+
2834bzl_library (
2935 name = "executables_bzl" ,
3036 srcs = ["executables.bzl" ],
@@ -45,6 +51,12 @@ bzl_library(
4551 ],
4652)
4753
54+ bzl_library (
55+ name = "rule_builders_bzl" ,
56+ srcs = ["rule_builders.bzl" ],
57+ deps = ["//python/private:rule_builders_bzl" ],
58+ )
59+
4860filegroup (
4961 name = "distribution" ,
5062 srcs = glob (["**" ]),
Original file line number Diff line number Diff line change 1+ """Public, attribute building APIs for Python rules."""
2+
3+ load ("//python/private:attr_builders.bzl" , _attrb = "attrb" )
4+
5+ attrb = _attrb
Original file line number Diff line number Diff line change 1+ """Public, rule building APIs for Python rules."""
2+
3+ load ("//python/private:rule_builders.bzl" , _ruleb = "ruleb" )
4+
5+ ruleb = _ruleb
You can’t perform that action at this time.
0 commit comments