xref: /aosp_15_r20/external/bazelbuild-rules_rust/cargo/settings/BUILD.bazel (revision d4726bddaa87cc4778e7472feed243fa4b6c267f)
1load("@bazel_skylib//rules:common_settings.bzl", "bool_flag")
2
3package(default_visibility = ["//visibility:public"])
4
5# A flag for which causes `cargo_build_script` to symlink the execroot of the action to
6# the `CARGO_MANIFEST_DIR` where the scripts are run.
7bool_flag(
8    name = "experimental_symlink_execroot",
9    build_setting_default = False,
10)
11