aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/runtime/BlazeCommandEventHandler.java
diff options
context:
space:
mode:
authorGravatar Eduardo Colaco <eduardocolaco@google.com>2016-11-03 15:33:47 +0000
committerGravatar Laszlo Csomor <laszlocsomor@google.com>2016-11-03 16:12:39 +0000
commit8d8abe46bd7ab0c87beb31d97c9185760d762d79 (patch)
tree197a26794eddd4b59878b199c1914bc751f5a776 /src/main/java/com/google/devtools/build/lib/runtime/BlazeCommandEventHandler.java
parent38e54ac14e69113e9790ce9a526784e0f18e4b6e (diff)
Writes a machine readable representation of BuildEvents to a file (varint delimited).
Adds --experimental_build_event_binary_file option that enables varint delimited proto loggging to the specified file path Adds varint delimited BuildEventStreamTransport and BuildEventStreamerModule Adds BuildEventStreamerModule for configuring and setting up BuildEventStreamer and its associated BuildEventTransports. Adds BuildEventTransportFactory which creates a Set of transports from command options. Moves BuildEventStreamer configuration from BlazeCommandDispatcher and BuildEventStreamerModule -- Change-Id: If71f2b58654879c2509206da47e6d1a846bf397f Reviewed-on: https://bazel-review.googlesource.com/#/c/7010/ MOS_MIGRATED_REVID=138073726
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/runtime/BlazeCommandEventHandler.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/runtime/BlazeCommandEventHandler.java9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/runtime/BlazeCommandEventHandler.java b/src/main/java/com/google/devtools/build/lib/runtime/BlazeCommandEventHandler.java
index 7ab613fc3f..601f37f5fd 100644
--- a/src/main/java/com/google/devtools/build/lib/runtime/BlazeCommandEventHandler.java
+++ b/src/main/java/com/google/devtools/build/lib/runtime/BlazeCommandEventHandler.java
@@ -168,15 +168,6 @@ public class BlazeCommandEventHandler implements EventHandler {
)
public int experimentalUiActionsShown;
-
- @Option(
- name = "experimental_build_event_text_file",
- defaultValue = "",
- category = "hidden",
- help = "If non-empty, write a textual representation of the build event protocol to that file"
- )
- public String buildEventTextFile;
-
public boolean useColor() {
return useColorEnum == UseColor.YES || (useColorEnum == UseColor.AUTO && isATty);
}