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