From 9b7730cd280db0cc8ad618a5573c1d99dab5a0bf Mon Sep 17 00:00:00 2001 From: Googler Date: Wed, 5 Jul 2023 00:35:00 -0700 Subject: [PATCH] Move `check_fileset_dependencies_recursively` to the graveyard. PiperOrigin-RevId: 545585833 Change-Id: I6c736b55a6f03458e5b3dbf69d28b283a13f3d62 --- .../build/lib/analysis/config/CoreOptions.java | 10 ---------- .../build/lib/bazel/rules/BazelRulesModule.java | 10 ++++++++++ 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/main/java/com/google/devtools/build/lib/analysis/config/CoreOptions.java b/src/main/java/com/google/devtools/build/lib/analysis/config/CoreOptions.java index 20b327f07051b4..954287d66e7f77 100644 --- a/src/main/java/com/google/devtools/build/lib/analysis/config/CoreOptions.java +++ b/src/main/java/com/google/devtools/build/lib/analysis/config/CoreOptions.java @@ -499,16 +499,6 @@ public ExecConfigurationDistinguisherSchemeConverter() { + "https://bazel.build/extending/rules#runfiles_features_to_avoid).") public boolean alwaysIncludeFilesToBuildInData; - @Option( - name = "check_fileset_dependencies_recursively", - defaultValue = "true", - documentationCategory = OptionDocumentationCategory.UNDOCUMENTED, - deprecationWarning = - "This flag is a no-op and fileset dependencies are always checked " - + "to ensure correctness of builds.", - effectTags = {OptionEffectTag.AFFECTS_OUTPUTS}) - public boolean checkFilesetDependenciesRecursively; - @Option( name = "experimental_skyframe_native_filesets", defaultValue = "true", diff --git a/src/main/java/com/google/devtools/build/lib/bazel/rules/BazelRulesModule.java b/src/main/java/com/google/devtools/build/lib/bazel/rules/BazelRulesModule.java index 0ce586fa345f56..40351f498680da 100644 --- a/src/main/java/com/google/devtools/build/lib/bazel/rules/BazelRulesModule.java +++ b/src/main/java/com/google/devtools/build/lib/bazel/rules/BazelRulesModule.java @@ -465,6 +465,16 @@ public static class BuildGraveyardOptions extends OptionsBase { }, help = "This option is deprecated and has no effect and will be removed in the future.") public boolean deferParamFiles; + + @Option( + name = "check_fileset_dependencies_recursively", + defaultValue = "true", + documentationCategory = OptionDocumentationCategory.UNDOCUMENTED, + deprecationWarning = + "This flag is a no-op and fileset dependencies are always checked " + + "to ensure correctness of builds.", + effectTags = {OptionEffectTag.AFFECTS_OUTPUTS}) + public boolean checkFilesetDependenciesRecursively; } /** This is where deprecated Bazel-specific options only used by the build command go to die. */