2021-11-08 14:40:36 +00:00
<!-- Generated with Stardoc: http://skydoc.bazel.build -->
Public API for expanding variables
2022-06-10 20:05:19 +00:00
< a id = "expand_locations" > < / a >
2021-11-08 14:40:36 +00:00
## expand_locations
< pre >
expand_locations(< a href = "#expand_locations-ctx" > ctx< / a > , < a href = "#expand_locations-input" > input< / a > , < a href = "#expand_locations-targets" > targets< / a > )
< / pre >
Expand location templates.
2022-04-01 03:04:35 +00:00
Expands all `$(execpath ...)` , `$(rootpath ...)` and deprecated `$(location ...)` templates in the
2021-11-08 14:40:36 +00:00
given string by replacing with the expanded path. Expansion only works for labels that point to direct dependencies
of this rule or that are explicitly listed in the optional argument targets.
See https://docs.bazel.build/versions/main/be/make-variables.html#predefined_label_variables.
Use `$(rootpath)` and `$(rootpaths)` to expand labels to the runfiles path that a built binary can use
to find its dependencies. This path is of the format:
- `./file`
- `path/to/file`
- `../external_repo/path/to/file`
Use `$(execpath)` and `$(execpaths)` to expand labels to the execroot (where Bazel runs build actions).
This is of the format:
- `./file`
- `path/to/file`
- `external/external_repo/path/to/file`
2023-11-15 23:07:03 +00:00
- `<bin_dir>/path/to/file`
- `<bin_dir>/external/external_repo/path/to/file`
2021-11-08 14:40:36 +00:00
2022-04-01 03:04:35 +00:00
The deprecated `$(location)` and `$(locations)` expansions returns either the execpath or rootpath depending on the context.
2021-11-08 14:40:36 +00:00
**PARAMETERS**
| Name | Description | Default Value |
| :------------- | :------------- | :------------- |
| < a id = "expand_locations-ctx" > < / a > ctx | context | none |
| < a id = "expand_locations-input" > < / a > input | String to be expanded | none |
| < a id = "expand_locations-targets" > < / a > targets | List of targets for additional lookup information. | < code > []< / code > |
**RETURNS**
The expanded path or the original path
2022-06-10 20:05:19 +00:00
< a id = "expand_variables" > < / a >
2021-11-08 14:40:36 +00:00
## expand_variables
< pre >
2023-10-06 15:32:55 +00:00
expand_variables(< a href = "#expand_variables-ctx" > ctx< / a > , < a href = "#expand_variables-s" > s< / a > , < a href = "#expand_variables-outs" > outs< / a > , < a href = "#expand_variables-attribute_name" > attribute_name< / a > )
2021-11-08 14:40:36 +00:00
< / pre >
Expand make variables and substitute like genrule does.
2023-08-26 20:59:48 +00:00
Bazel [pre-defined variables ](https://bazel.build/reference/be/make-variables#predefined_variables )
are expanded however only `$@` , `$(@D)` and `$(RULEDIR)` of
[pre-defined genrule variables ](https://bazel.build/reference/be/make-variables#predefined_genrule_variables )
are supported.
2021-11-08 14:40:36 +00:00
This function is the same as ctx.expand_make_variables with the additional
genrule-like substitutions of:
2021-11-10 14:34:00 +00:00
- `$@` : The output file if it is a single file. Else triggers a build error.
2022-06-16 23:26:29 +00:00
- `$(@D)` : The output directory.
If there is only one file name in outs, this expands to the directory containing that file.
If there is only one directory in outs, this expands to the single output directory.
If there are multiple files, this instead expands to the package's root directory in the bin tree,
even if all generated files belong to the same subdirectory!
2021-11-10 14:34:00 +00:00
- `$(RULEDIR)` : The output directory of the rule, that is, the directory
2021-11-08 14:40:36 +00:00
corresponding to the name of the package containing the rule under the bin tree.
2022-08-29 14:12:25 +00:00
- `$(BUILD_FILE_PATH)` : ctx.build_file_path
2022-08-12 02:30:45 +00:00
2022-08-29 14:12:25 +00:00
- `$(VERSION_FILE)` : ctx.version_file.path
2022-08-12 02:30:45 +00:00
2022-08-29 14:12:25 +00:00
- `$(INFO_FILE)` : ctx.info_file.path
2022-08-12 02:30:45 +00:00
2022-08-29 14:12:25 +00:00
- `$(TARGET)` : ctx.label
2022-08-12 02:30:45 +00:00
2022-08-29 14:12:25 +00:00
- `$(WORKSPACE)` : ctx.workspace_name
2022-08-12 02:30:45 +00:00
2021-11-08 14:40:36 +00:00
See https://docs.bazel.build/versions/main/be/general.html#genrule.cmd and
https://docs.bazel.build/versions/main/be/make-variables.html#predefined_genrule_variables
for more information of how these special variables are expanded.
**PARAMETERS**
| Name | Description | Default Value |
| :------------- | :------------- | :------------- |
| < a id = "expand_variables-ctx" > < / a > ctx | starlark rule context | none |
| < a id = "expand_variables-s" > < / a > s | expression to expand | none |
| < a id = "expand_variables-outs" > < / a > outs | declared outputs of the rule, for expanding references to outputs | < code > []< / code > |
2022-08-12 02:30:45 +00:00
| < a id = "expand_variables-attribute_name" > < / a > attribute_name | name of the attribute containing the expression. Used for error reporting. | < code > "args"< / code > |
2021-11-08 14:40:36 +00:00
**RETURNS**
2021-11-10 14:34:00 +00:00
`s` with the variables expanded
2021-11-08 14:40:36 +00:00