We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c9247b commit 186d18aCopy full SHA for 186d18a
prelude/cfg/modifier/name.bzl
@@ -28,6 +28,7 @@ NAMED_CONSTRAINT_SETTINGS = {
28
"ovr_config//build_mode:sanitizer_type": (lambda label: str(label.sub_target[0])),
29
"fbcode//fdo/constraints:fdo": (lambda label: str(label.name)),
30
"ovr_config//build_mode/default_opt_cxx:default_opt_cxx_setting": (lambda label: "opt-by-default" if str(label.name) == "enabled" else None),
31
+ "ovr_config//build_mode/constraints:arvr_mode": (lambda label: "arvr" if str(label.name) == "arvr_mode_enabled" else None),
32
}
33
34
# Mark all modifier generated configurations with a `cfg:` prefix.
0 commit comments