-
-
Notifications
You must be signed in to change notification settings - Fork 515
/
printer.bzl
26 lines (21 loc) · 944 Bytes
/
printer.bzl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
"""Example of a rule that accesses its attributes."""
# buildifier: disable=print
def _impl(ctx):
# Print debug information about the target.
print("Target {} has {} deps".format(ctx.label, len(ctx.attr.deps)))
# For each target in deps, print its label and files.
for i, d in enumerate(ctx.attr.deps):
print(" {}. label = {}".format(i + 1, d.label))
# A label can represent any number of files (possibly 0).
print(" files = " + str([f.path for f in d.files.to_list()]))
# For debugging, consider using `dir` to explore the existing fields.
print(dir(ctx)) # prints all the fields and methods of ctx
print(dir(ctx.attr)) # prints all the attributes of the rule
printer = rule(
implementation = _impl,
attrs = {
# Do not declare "name": It is added automatically.
"number": attr.int(default = 1),
"deps": attr.label_list(allow_files = True),
},
)