aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/buildeventstream/proto
diff options
context:
space:
mode:
authorGravatar Klaus Aehlig <aehlig@google.com>2017-04-27 16:58:24 +0200
committerGravatar Vladimir Moskva <vladmos@google.com>2017-04-28 01:00:37 +0200
commit6fcc00fcd1bccdfd3281f42135ec6ea257be87b0 (patch)
tree0f42e5e278d1e1b65f796681ce7d78fa3d5ec5d4 /src/main/java/com/google/devtools/build/lib/buildeventstream/proto
parentba827ba91d8e23fcfde3ebce538f0a33acec109d (diff)
BEP: Also show the rule for each target
When available, also show the rule in the TargetComplete event. This information might help to better interpret the output groups and the target in general. Change-Id: I36c06b9658fc72605f29e7e34ad7e5c83faa030c PiperOrigin-RevId: 154422414
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/buildeventstream/proto')
-rw-r--r--src/main/java/com/google/devtools/build/lib/buildeventstream/proto/build_event_stream.proto4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/buildeventstream/proto/build_event_stream.proto b/src/main/java/com/google/devtools/build/lib/buildeventstream/proto/build_event_stream.proto
index c4ae568f91..dca2dc7679 100644
--- a/src/main/java/com/google/devtools/build/lib/buildeventstream/proto/build_event_stream.proto
+++ b/src/main/java/com/google/devtools/build/lib/buildeventstream/proto/build_event_stream.proto
@@ -291,6 +291,10 @@ message OutputGroup {
message TargetComplete {
bool success = 1;
+ // The kind of target (e.g., e.g. "cc_library rule", "source file",
+ // "generated file") where the completion is reported.
+ string target_kind = 5;
+
// The output files are arranged by their output group. If an output file
// is part of multiple output groups, it appears once in each output
// group.