aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/buildtool
diff options
context:
space:
mode:
authorGravatar felly <felly@google.com>2018-05-15 10:57:33 -0700
committerGravatar Copybara-Service <copybara-piper@google.com>2018-05-15 10:59:22 -0700
commitac7d5f6a2aeff868165490c97d4600a88dd3cf4f (patch)
tree8811f7681e00f29ea97c35cd3daf9470fae57c18 /src/main/java/com/google/devtools/build/lib/buildtool
parente78867461c594d9afcaae0dd115b86e2d63a29ac (diff)
Move --track_incremental_state and --keep_state_after_build to CommonCommandOptions to better facilitate certain kinds of benchmarking.
PiperOrigin-RevId: 196695342
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/buildtool')
-rw-r--r--src/main/java/com/google/devtools/build/lib/buildtool/BuildRequestOptions.java25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/buildtool/BuildRequestOptions.java b/src/main/java/com/google/devtools/build/lib/buildtool/BuildRequestOptions.java
index cd4e86ddad..f5701cb5d0 100644
--- a/src/main/java/com/google/devtools/build/lib/buildtool/BuildRequestOptions.java
+++ b/src/main/java/com/google/devtools/build/lib/buildtool/BuildRequestOptions.java
@@ -379,31 +379,6 @@ public class BuildRequestOptions extends OptionsBase {
public boolean useActionCache;
@Option(
- name = "track_incremental_state",
- oldName = "keep_incrementality_data",
- defaultValue = "true",
- documentationCategory = OptionDocumentationCategory.BUILD_TIME_OPTIMIZATION,
- effectTags = {OptionEffectTag.LOSES_INCREMENTAL_STATE},
- help =
- "If false, Blaze will not persist data that allows for invalidation and re-evaluation "
- + "on incremental builds in order to save memory on this build. Subsequent builds "
- + "will not have any incrementality with respect to this one. Usually you will want "
- + "to specify --batch when setting this to false."
- )
- public boolean trackIncrementalState;
-
- @Option(
- name = "keep_state_after_build",
- defaultValue = "true",
- documentationCategory = OptionDocumentationCategory.BUILD_TIME_OPTIMIZATION,
- effectTags = {OptionEffectTag.LOSES_INCREMENTAL_STATE},
- help =
- "If false, Blaze will discard the inmemory state from this build when the build finishes. "
- + "Subsequent builds will not have any incrementality with respect to this one."
- )
- public boolean keepStateAfterBuild;
-
- @Option(
name = "discard_actions_after_execution",
defaultValue = "true",
documentationCategory = OptionDocumentationCategory.UNDOCUMENTED,