Skip to content

Commit

Permalink
Move check_fileset_dependencies_recursively to the graveyard.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 545585833
Change-Id: I6c736b55a6f03458e5b3dbf69d28b283a13f3d62
  • Loading branch information
meisterT authored and copybara-github committed Jul 5, 2023
1 parent 0dd6a49 commit 9b7730c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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. */
Expand Down

0 comments on commit 9b7730c

Please sign in to comment.