[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / utils / bazel / llvm-project-overlay / workspace_root.bzl
blob2932fb143cefc8ca141b3192f66027158151ba80
1 def _workspace_root_impl(ctx):
2     """Dynamically determine the workspace root from the current context.
4     The path is made available as a `WORKSPACE_ROOT` environmment variable and
5     may for instance be consumed in the `toolchains` attributes for `cc_library`
6     and `genrule` targets.
7     """
8     return [
9         platform_common.TemplateVariableInfo({
10             "WORKSPACE_ROOT": ctx.label.workspace_root,
11         }),
12     ]
14 workspace_root = rule(
15     implementation = _workspace_root_impl,
16     attrs = {},