Skip to content

Commit

Permalink
Flip the default value of --incompatible_disable_depset_in_cc_user_flags
Browse files Browse the repository at this point in the history
Fixes #6383.

RELNOTES: None.
PiperOrigin-RevId: 223516016
  • Loading branch information
hlopko authored and Copybara-Service committed Nov 30, 2018
1 parent 345685d commit c3e2de3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -767,7 +767,7 @@ public Label getFdoPrefetchHintsLabel() {

@Option(
name = "incompatible_disable_depset_in_cc_user_flags",
defaultValue = "false",
defaultValue = "true",
documentationCategory = OptionDocumentationCategory.UNDOCUMENTED,
effectTags = {OptionEffectTag.LOADING_AND_ANALYSIS},
metadataTags = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -505,6 +505,7 @@ public void testCompileBuildVariablesForPic() throws Exception {

@Test
public void testUserCompileFlags() throws Exception {
useConfiguration("--noincompatible_disable_depset_in_cc_user_flags");
assertThat(
commandLineForVariables(
CppActionNames.CPP_COMPILE,
Expand Down Expand Up @@ -651,6 +652,7 @@ public void testRuntimeLibrarySearchDirectoriesLinkVariables() throws Exception

@Test
public void testUserLinkFlagsLinkVariables() throws Exception {
useConfiguration("--noincompatible_disable_depset_in_cc_user_flags");
assertThat(
commandLineForVariables(
CppActionNames.CPP_LINK_EXECUTABLE,
Expand Down

0 comments on commit c3e2de3

Please sign in to comment.