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

19 lines
477 B
Python
Raw Normal View History

2024-06-22 08:45:49 -04:00
# buildifier: disable=module-docstring
MyPoorlyDocumentedInfo = provider()
MyFooInfo = provider(
doc = "Stores information about a foo.",
fields = ["bar", "baz"],
)
MyVeryDocumentedInfo = provider(
doc = """
A provider with some really neat documentation.
Look on my works, ye mighty, and despair!
""",
fields = {
"favorite_food": "A string representing my favorite food",
"favorite_color": "A string representing my favorite color",
},
)