2021-11-08 14:40:36 +00:00
|
|
|
"Public API for expanding variables"
|
|
|
|
|
|
|
|
load(
|
|
|
|
"//lib/private:expand_make_vars.bzl",
|
|
|
|
_expand_locations = "expand_locations",
|
2021-11-08 15:22:47 +00:00
|
|
|
_expand_template = "expand_template",
|
2021-11-08 14:40:36 +00:00
|
|
|
_expand_variables = "expand_variables",
|
|
|
|
)
|
|
|
|
|
|
|
|
expand_locations = _expand_locations
|
|
|
|
expand_variables = _expand_variables
|
2021-11-10 14:30:07 +00:00
|
|
|
|
|
|
|
expand_template = rule(
|
|
|
|
doc = _expand_template.doc,
|
|
|
|
implementation = _expand_template.implementation,
|
|
|
|
attrs = _expand_template.attrs,
|
|
|
|
)
|