Imagine that you need to run a tool as part of your build. For example, you may want to generate or preprocess a source file, or compress a binary. In this tutorial, you are going to create a macro that resizes an image. Macros are suitable for simple tasks. If you want to do anything more complicated, for example add support for a new programming language, consider creating a rule. Rules give you more control and flexibility. The easiest way to create a macro that resizes an image is to use aDocumentation Index
Fetch the complete documentation index at: https://bazel-pr-29415.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
genrule:
.bzl file, and call the file miniature.bzl:
-
By convention, macros have a
nameargument, just like rules. - To document the behavior of a macro, use docstring like in Python.
-
To call a
genrule, or any other native rule, usenative.. -
Use
**kwargsto forward the extra arguments to the underlyinggenrule(it works just like in Python). This is useful, so that a user can use standard attributes likevisibility, ortags.
BUILD file: