android13/external/stardoc/test/testdata/generated_bzl_test/input.bzl

17 lines
440 B
Python
Raw Normal View History

2024-06-22 08:45:49 -04:00
"""A direct dependency file of the input file."""
load(":testdata/generated_bzl_test/dep.bzl", "my_rule_impl")
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),
},
)