General Rules
filegroup
filegroup(name, srcs, data, compatible_with, deprecation, distribs, features, licenses, output_group, output_licenses, path, restricted_to, tags, testonly, visibility)
  Use filegroup to give a convenient name to a collection of targets.
  These can then be referenced from other rules.
  Using filegroup is encouraged instead of referencing directories directly.
  The latter is unsound since the build system does not have full knowledge of all files
  below the directory, so it may not rebuild when these files change. When combined with
  glob, filegroup can ensure that all files are
  explicitly known to the build system.
Examples
  To create a filegroup consisting of two source files, do
filegroup(
    name = "mygroup",
    srcs = [
        "a_file.txt",
        "some/subdirectory/another_file.txt",
    ],
)
  Or, use a glob to grovel a testdata directory:
filegroup(
    name = "exported_testdata",
    srcs = glob([
        "testdata/*.dat",
        "testdata/logs/**/*.log",
    ]),
)
  To make use of these definitions, reference the filegroup with a label from any rule:
cc_library(
    name = "my_library",
    srcs = ["foo.cc"],
    data = [
        "//my_package:exported_testdata",
        "//my_package:mygroup",
    ],
)
  Arguments
| Attributes | |
|---|---|
name | 
        
           
 A unique name for this target.  | 
      
          srcs
         | 
        
                     
 
          It is common to use the result of a glob expression for
          the value
          of the   | 
      
          data
         | 
        
                     
 
          Targets named in the   | 
      
          output_group
         | 
        
                     
 An "output group" is a category of output artifacts of a target, specified in that rule's implementation.  | 
      
          path
         | 
        
                     
 
          This attribute can be used internally by other rules depending on this
            | 
      
genquery
genquery(name, deps, data, compatible_with, deprecation, distribs, expression, features, licenses, opts, restricted_to, scope, strict, tags, testonly, visibility)
  genquery() runs a query specified in the
    Bazel query language and dumps the result
    into a file.
  
    In order to keep the build consistent, the query is allowed only to visit
    the transitive closure of the targets specified in the scope
    attribute. Queries violating this rule will fail during execution if
    strict is unspecified or true (if strict is false,
    the out of scope targets will simply be skipped with a warning). The
    easiest way to make sure this does not happen is to mention the same labels
    in the scope as in the query expression.
  
    The only difference between the queries allowed here and on the command
    line is that queries containing wildcard target specifications (e.g.
    //pkg:* or //pkg:all) are not allowed here.
    The reasons for this are two-fold: first, because genquery has
    to specify a scope to prevent targets outside the transitive closure of the
    query to influence its output; and, second, because BUILD files
    do not support wildcard dependencies (e.g. deps=["//a/..."]
    is not allowed).
  
    The genquery's output is ordered using --order_output=full in
    order to enforce deterministic output.
  
The name of the output file is the name of the rule.
Examples
This example writes the list of the labels in the transitive closure of the specified target to a file.
genquery(
    name = "kiwi-deps",
    expression = "deps(//kiwi:kiwi_lib)",
    scope = ["//kiwi:kiwi_lib"],
)
  Arguments
| Attributes | |
|---|---|
name | 
        
           
 A unique name for this target.  | 
      
          expression
         | 
        
                     
 :b in this attribute in the file a/BUILD will refer to the
        target //:b.
         | 
      
          opts
         | 
        
                     
 bazel query. Some query options are not allowed
        here: --keep_going, --query_file, --universe_scope,
        --order_results and --order_output. Options not specified here
        will have their default values just like on the command line of bazel query.
         | 
      
          scope
         | 
        
                     
  | 
      
          strict
         | 
        
                     
  | 
      
test_suite
test_suite(name, compatible_with, deprecation, distribs, features, licenses, restricted_to, tags, testonly, tests, visibility)
A test_suite defines a set of tests that are considered "useful" to humans. This
allows projects to define sets of tests, such as "tests you must run before checkin", "our
project's stress tests" or "all small tests."
Examples
A test suite to run all of the small tests in the current package.
test_suite(
    name = "small_tests",
    tags = ["small"],
)
A test suite that runs a specified set of tests:
test_suite(
    name = "smoke_tests",
    tests = [
        "system_unittest",
        "public_api_unittest",
    ],
)
A test suite to run all tests in the current package which are not flaky.
test_suite(
    name = "non_flaky_test",
    tags = ["-flaky"],
)
  Arguments
| Attributes | |
|---|---|
name | 
        
           
 A unique name for this target.  | 
      
          tags
         | 
        
                     
 Tags which begin with a "-" character are considered negative tags. The preceding "-" character is not considered part of the tag, so a suite tag of "-small" matches a test's "small" size. All other tags are considered positive tags. Optionally, to make positive tags more explicit, tags may also begin with the "+" character, which will not be evaluated as part of the text of the tag. It merely makes the positive and negative distinction easier to read. Only test rules that match all of the positive tags and none of the negative tags will be included in the test suite. Note that this does not mean that error checking for dependencies on tests that are filtered out is skipped; the dependencies on skipped tests still need to be legal (e.g. not blocked by visibility constraints). 
          The  
          Note that a test's  
          If you need a   | 
      
          tests
         | 
        
                     
 
          Any  
          If the   | 
      
alias
alias(name, actual, compatible_with, deprecation, features, restricted_to, tags, testonly, visibility)
  The alias rule creates another name a rule can be referred to as.
  Aliasing only works for "regular" targets. In particular, package_group,
    config_setting and test_suite rules cannot be aliased.
The alias rule has its own visibility declaration. In all other respects, it behaves like the rule it references with some minor exceptions:
- 
      Tests are not run if their alias is mentioned on the command line. To define an alias
      that runs the referenced test, use a 
test_suiterule with a single target in itstestsattribute. - 
      When defining environment groups, the aliases to 
environmentrules are not supported. They are not supported in the--target_environmentcommand line option, either. 
Examples
filegroup(
    name = "data",
    srcs = ["data.txt"],
)
alias(
    name = "other",
    actual = ":data",
)
  Arguments
| Attributes | |
|---|---|
name | 
        
           
 A unique name for this target.  | 
      
          actual
         | 
        
                     
  | 
      
config_setting
config_setting(name, constraint_values, define_values, deprecation, distribs, features, licenses, tags, testonly, values, visibility)
Matches an expected configuration state (expressed as Bazel flags or platform constraints) for the purpose of triggering configurable attributes. See select for how to consume this rule and Configurable attributes for an overview of the general feature.
Examples
The following matches any Bazel invocation that specifies --compilation_mode=opt
     or -c opt (either explicitly at the command line or implicitly from .bazelrc
     files):
  
  config_setting(
      name = "simple",
      values = {"compilation_mode": "opt"}
  )
  
  The following matches any Bazel invocation that builds for ARM and that applies the custom
     define FOO=bar (for instance, bazel build --cpu=arm --define FOO=bar ...
     ):
  
  config_setting(
      name = "two_conditions",
      values = {
          "cpu": "arm",
          "define": "FOO=bar"
      }
  )
  
  The following matches any Bazel invocation that builds for a platform that has an x86_64
     architecture and glibc version 2.25, assuming the existence of a constraint_value
     with label //example:glibc_2_25. Note that a platform still matches if it defines
     additional constraint values beyond these two.
  
  config_setting(
      name = "64bit_glibc_2_25",
      constraint_values = [
          "@bazel_tools//platforms:x86_64",
          "//example:glibc_2_25",
      ]
  )
  
  In all these cases, it is possible for the configuration state to change during the build, for
  instance if a dependency of a target needs to be built for a different platform than the target
  itself. This means that even when a config_setting does not match the top-level
  command-line flags, it may still match a deeper part of the build, and vice versa.
  Notes
See select for what happens when multiple
     config_settings match the current configuration state.
  
For flags that support shorthand forms (e.g. --compilation_mode vs.
    -c), values definitions must use the full form. These automatically
    match invocations using either form.
  
The currently endorsed method for creating custom conditions that can't be expressed through
    dedicated build flags is through the --define flag. Use this flag with caution:
    it's not ideal and only endorsed for lack of a currently better workaround. See the
    
    Configurable attributes section for more discussion.
  
Avoid repeating identical config_setting definitions in different packages.
    Instead, prefer to reference a common config_setting target that is defined in a
    single package.
  
values,
     define_values, and
     constraint_values
     can be used in any combination in the same config_setting but at least one must be
     set for any given config_setting.
  
Arguments
| Attributes | |
|---|---|
name | 
        
           
 A unique name for this target.  | 
      
          constraint_values
         | 
        
                     
 constraint_values that the target platform must specify
          in order to match this config_setting. (The execution platform is not
          considered here.) Any additional constraint values that the platform has are ignored. See
          
          Configurable Build Attributes for details.
          In the case where two   | 
      
          define_values
         | 
        
                     
 values but
          specifically for the --define flag.
          
 
 That means: 
            config_setting(
                name = "a_and_b",
                values = {
                    "define": "a=1",
                    "define": "b=2",
                })
          
          doesn't work because the same key ( 
            config_setting(
                name = "a_and_b",
                define_values = {
                    "a": "1",
                    "b": "2",
                })
          
          corrrectly matches  
  | 
      
          values
         | 
        
                     
 This rule inherits the configuration of the configured target that
            references it in a  For convenience's sake, configuration values are specified as Bazel flags (without
            the preceding  If a flag is not explicitly set at the command line, its default value is used.
             If a key appears multiple times in the dictionary, only the last instance is used.
             If a key references a flag that can be set multiple times on the command line (e.g.
              
 This and   | 
      
genrule
genrule(name, srcs, outs, cmd, compatible_with, deprecation, distribs, executable, features, licenses, local, message, output_licenses, output_to_bindir, restricted_to, tags, testonly, toolchains, tools, visibility)
A genrule generates one or more files using a user-defined Bash command.
  Genrules are generic build rules that you can use if there's no specific rule for the task. If for
  example you want to minify JavaScript files then you can use a genrule to do so. If however you
  need to compile C++ files, stick to the existing cc_* rules, because all the heavy
  lifting has already been done for you.
  Do not use a genrule for running tests. There are special dispensations for tests and test
  results, including caching policies and environment variables. Tests generally need to be run
  after the build is complete and on the target architecture, whereas genrules are executed during
  the build and on the host architecture (the two may be different). If you need a general purpose
  testing rule, use sh_test.
Cross-compilation Considerations
See the user manual for more info about cross-compilation.
While genrules run during a build, their outputs are often used after the build, for deployment or testing. Consider the example of compiling C code for a microcontroller: the compiler accepts C source files and generates code that runs on a microcontroller. The generated code obviously cannot run on the CPU that was used for building it, but the C compiler (if compiled from source) itself has to.
The build system uses the host configuration to describe the machine(s) on which the build runs and the target configuration to describe the machine(s) on which the output of the build is supposed to run. It provides options to configure each of these and it segregates the corresponding files into separate directories to avoid conflicts.
  For genrules, the build system ensures that dependencies are built appropriately:
  srcs are built (if necessary) for the target configuration,
  tools are built for the host configuration, and the output is considered to
  be for the target configuration. It also provides 
  "Make" variables that genrule commands can pass to the corresponding tools.
  It is intentional that genrule defines no deps attribute: other built-in rules use
  language-dependent meta information passed between the rules to automatically determine how to
  handle dependent rules, but this level of automation is not possible for genrules. Genrules work
  purely at the file and runfiles level.
Special Cases
  Host-host compilation: in some cases, the build system needs to run genrules such that the
  output can also be executed during the build. If for example a genrule builds some custom compiler
  which is subsequently used by another genrule, the first one has to produce its output for the
  host configuration, because that's where the compiler will run in the other genrule. In this case,
  the build system does the right thing automatically: it builds the srcs and
  outs of the first genrule for the host configuration instead of the target
  configuration. See the user manual for more
  info.
JDK & C++ Tooling: to use a tool from the JDK or the C++ compiler suite, the build system provides a set of variables to use. See "Make" variable for details.
Genrule Environment
  The genrule command is executed in a Bash shell, configured to fail when a command or a pipeline
  fails (set -e -o pipefail). Genrules should not access the network (except to create
  connections between processes running within the same genrule on the same machine), though this is
  not currently enforced.
The build system automatically deletes any existing output files, but creates any necessary parent directories before it runs a genrule. It also removes any output files in case of a failure.
General Advice
- Do ensure that tools run by a genrule are deterministic and hermetic. They should not write timestamps to their output, and they should use stable ordering for sets and maps, as well as write only relative file paths to the output, no absolute paths. Not following this rule will lead to unexpected build behavior (Bazel not rebuilding a genrule you thought it would) and degrade cache performance.
 - Do use 
$(location)extensively, for outputs, tools and sources. Due to the segregation of output files for different configurations, genrules cannot rely on hard-coded and/or absolute paths. - Do write a common Skylark macro in case the same or very similar genrules are used in multiple places. If the genrule is complex, consider implementing it in a script or as a Skylark rule. This improves readability as well as testability.
 - Do make sure that the exit code correctly indicates success or failure of the genrule.
 - Do not write informational messages to stdout or stderr. While useful for debugging, this can easily become noise; a successful genrule should be silent. On the other hand, a failing genrule should emit good error messages.
 $$evaluates to a$, a literal dollar-sign, so in order to invoke a shell command containing dollar-signs such asls $(dirname $x), one must escape it thus:ls $$(dirname $$x).- Avoid creating symlinks and directories. Bazel doesn't copy over the directory/symlink structure created by genrules and its dependency checking of directories is unsound.
 - When referencing the genrule in other rules, you can use either the genrule's label or the
    labels of individual output files. Sometimes the one approach is more readable, sometimes the
    other: referencing outputs by name in a consuming rule's 
srcswill avoid unintentionally picking up other outputs of the genrule, but can be tedious if the genrule produces many outputs. 
Examples
  This example generates foo.h. There are no sources, because the command doesn't take
  any input. The "binary" run by the command is a perl script in the same package as the genrule.
genrule(
    name = "foo",
    srcs = [],
    outs = ["foo.h"],
    cmd = "./$(location create_foo.pl) > \"$@\"",
    tools = ["create_foo.pl"],
)
  The following example shows how to use a filegroup
   and the outputs of another genrule. Note that using $(SRCS) instead
  of explicit $(location) directives would also work; this example uses the latter for
  sake of demonstration.
genrule(
    name = "concat_all_files",
    srcs = [
        "//some:files",  # a filegroup with multiple files in it ==> $(locations)
        "//other:gen",   # a genrule with a single output ==> $(location)
    ],
    outs = ["concatenated.txt"],
    cmd = "cat $(locations //some:files) $(location //other:gen) > $@",
)
  Arguments
| Attributes | |
|---|---|
name | 
        
           
 A unique name for this target. You may refer to this rule by name in the srcs or deps section of other BUILD
    rules. If the rule generates source files, you should use the
    srcs attribute.
         | 
      
          srcs
         | 
        
                     
 
          This attributes is not suitable to list tools executed by the  
          The build system ensures these prerequisites are built before running the genrule
          command; they are built using the same configuration as the original build request. The
          names of the files of these prerequisites are available to the command as a
          space-separated list in   | 
      
          outs
         | 
        
                     
 Output files must not cross package boundaries. Output filenames are interpreted as relative to the package. 
          If the   | 
      
          cmd
         | 
        
                     
 
 
          The command may refer to  
  | 
      
          executable
         | 
        
                     
 
          Setting this flag to 1 means the output is an executable file and can be run using the
           Declaring data dependencies for the generated executable is not supported.  | 
      
          local
         | 
        
                     
 
          If set to 1, this option force this  
          This is equivalent to providing 'local' as a tag ( 
          The   | 
      
          message
         | 
        
                     
 
          A progress message that will be printed as this build step is executed. By default, the
          message is "Generating output" (or something equally bland) but you may provide a
          more specific one. Use this attribute instead of   | 
      
          output_licenses
         | 
        
                     
 common attributes
        
         | 
      
          output_to_bindir
         | 
        
                     
 
          If set to 1, this option causes output files to be written into the   | 
      
          toolchains
         | 
        
                     
  | 
      
          tools
         | 
        
                     
 
          The build system ensures these prerequisites are built before running the genrule command;
          they are built using the host
          configuration, since these tools are executed as part of the build. The path of an
          individual  
          Any   |