Skip to content

Commit

Permalink
Move --incompatible_applicable_licenses to graveyard. To be deleted b…
Browse files Browse the repository at this point in the history
…efore Bazel 6.x.

RELNOTES: Deprecate --incompatible_applicable_licenses flag, in preparation for removal in Bazel 6.x.
PiperOrigin-RevId: 405761347
  • Loading branch information
aiuto authored and copybara-github committed Oct 26, 2021
1 parent 14b72b8 commit 2c6fa34
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -487,6 +487,15 @@ public static final class AllCommandGraveyardOptions extends OptionsBase {
documentationCategory = OptionDocumentationCategory.UNDOCUMENTED,
help = "No-op")
public boolean enableCpuUsageProfiling;

@Option(
name = "incompatible_applicable_licenses",
defaultValue = "false",
documentationCategory = OptionDocumentationCategory.UNDOCUMENTED,
effectTags = {OptionEffectTag.NO_OP},
metadataTags = {OptionMetadataTag.INCOMPATIBLE_CHANGE},
help = "No-op.")
public boolean incompatibleApplicableLicenses;
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -412,15 +412,6 @@ public class BuildLanguageOptions extends OptionsBase implements Serializable {
help = "If set to true, disables the function `attr.license`.")
public boolean incompatibleNoAttrLicense;

@Option(
name = "incompatible_applicable_licenses",
defaultValue = "false",
documentationCategory = OptionDocumentationCategory.UNDOCUMENTED,
effectTags = {OptionEffectTag.NO_OP},
metadataTags = {OptionMetadataTag.INCOMPATIBLE_CHANGE},
help = "No-op")
public boolean incompatibleApplicableLicenses;

@Option(
name = "incompatible_no_implicit_file_export",
defaultValue = "false",
Expand Down

0 comments on commit 2c6fa34

Please sign in to comment.