Skip to content

Commit

Permalink
Flip the --incompatible_disable_objc_provider_resources flag to true …
Browse files Browse the repository at this point in the history
…by default.

See #5710 for more info.

RELNOTES: --incompatible_disable_objc_provider_resources is now enabled by default.
PiperOrigin-RevId: 246142200
  • Loading branch information
sergiocampama authored and Copybara-Service committed May 1, 2019
1 parent c724f5e commit 6cb90b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -212,7 +212,7 @@ public class StarlarkSemanticsOptions extends OptionsBase implements Serializabl

@Option(
name = "incompatible_disable_objc_provider_resources",
defaultValue = "false",
defaultValue = "true",
documentationCategory = OptionDocumentationCategory.STARLARK_SEMANTICS,
effectTags = {OptionEffectTag.BUILD_FILE_SEMANTICS},
metadataTags = {
Expand Down
Expand Up @@ -230,7 +230,7 @@ public static Builder builderWithDefaults() {
.incompatibleDepsetUnion(true)
.incompatibleDisableThirdPartyLicenseChecking(true)
.incompatibleDisableDeprecatedAttrParams(false)
.incompatibleDisableObjcProviderResources(false)
.incompatibleDisableObjcProviderResources(true)
.incompatibleDisallowDictPlus(true)
.incompatibleDisallowFileType(true)
.incompatibleDisallowLegacyJavaProvider(false)
Expand Down

0 comments on commit 6cb90b8

Please sign in to comment.