## run_binary
run_binary(name, args, env, outs, srcs, tool)
Runs a binary as a build action.

This rule does not require Bash (unlike native.genrule). ### Attributes
name Name; required

A unique name for this target.

args List of strings; optional

Command line arguments of the binary.

Subject to$(location) expansion.

env Dictionary: String -> String; optional

Environment variables of the action.

Subject to $(location) expansion.

outs List of labels; required

Output files generated by the action.

These labels are available for $(location) expansion in args and env.

srcs List of labels; optional

Additional inputs of the action.

These labels are available for $(location) expansion in args and env.

tool Label; required

The tool to run in the action.

Must be the label of a *_binary rule, of a rule that generates an executable file, or of a file that can be executed as a subprocess (e.g. an .exe or .bat file on Windows or a binary with executable permission on Linux). This label is available for $(location) expansion in args and env.