blob: 3c38cbab81a17c337d3286061d5df2333168fae6 [file] [log] [blame]
load(
":testdata/filter_rules_test/dep.bzl",
"my_rule_impl",
dep_rule = "my_rule",
)
my_rule = rule(
implementation = my_rule_impl,
doc = "This is my rule. It does stuff.",
attrs = {
"first": attr.label(
mandatory = True,
doc = "first my_rule doc string",
allow_single_file = True,
),
"second": attr.string_dict(mandatory = True),
},
)
other_rule = rule(
implementation = my_rule_impl,
doc = "This is another rule.",
attrs = {
"test": attr.string_dict(mandatory = True),
},
)
allowlisted_dep_rule = dep_rule
yet_another_rule = rule(
implementation = my_rule_impl,
doc = "This is yet another rule",
attrs = {
"test": attr.string_dict(mandatory = True),
},
)