aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main
diff options
context:
space:
mode:
authorGravatar Klaus Aehlig <aehlig@google.com>2017-04-11 11:59:07 +0000
committerGravatar Jakob Buchgraber <buchgr@google.com>2017-04-12 11:42:10 +0200
commit481133fdbcbd4160ea78963a6f8f0db0f5b322f8 (patch)
treea5c44a5a4f151c7d50643b29cec865c6729faf64 /src/main
parentbe7bb5ba60689e45ead657cc010bd1259a11c00d (diff)
BEP: clean up no longer needed field in OutputGroup
Output artifacts are now always reported as named sets. So the field for reporting artifacts directly in no longer needed. Clean it up. Change-Id: I41efc66116d4a733088d4ee685ccd3fcf0a62d05 PiperOrigin-RevId: 152799435
Diffstat (limited to 'src/main')
-rw-r--r--src/main/java/com/google/devtools/build/lib/buildeventstream/proto/build_event_stream.proto6
1 files changed, 3 insertions, 3 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 74ff5975ec..73f9d17111 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
@@ -275,12 +275,12 @@ message ActionExecuted {
// Collection of all output files belonging to that output group.
message OutputGroup {
+ // Ids of fields that have been removed.
+ reserved 2;
+
// Name of the output group
string name = 1;
- // List of output files that belong to this output group.
- repeated File output_file = 2;
-
// List of file sets that belong to this output group as well.
repeated BuildEventId.NamedSetOfFilesId file_sets = 3;
}