mirror of
https://github.com/bazel-contrib/bazel-lib
synced 2024-11-26 13:30:30 +00:00
da6fb88da7
* feat: add runfiles helpers needed for rules_js * chore: code review feedback
18 lines
442 B
Python
18 lines
442 B
Python
"Public API for expanding variables"
|
|
|
|
load(
|
|
"//lib/private:expand_make_vars.bzl",
|
|
_expand_locations = "expand_locations",
|
|
_expand_template = "expand_template",
|
|
_expand_variables = "expand_variables",
|
|
)
|
|
|
|
expand_locations = _expand_locations
|
|
expand_variables = _expand_variables
|
|
|
|
expand_template = rule(
|
|
doc = _expand_template.doc,
|
|
implementation = _expand_template.implementation,
|
|
attrs = _expand_template.attrs,
|
|
)
|