aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar aehlig <aehlig@google.com>2017-05-23 13:07:12 +0200
committerGravatar Irina Iancu <elenairina@google.com>2017-05-23 17:35:43 +0200
commit54d6de7ce6d4e5ec95b94118376915df56ef06b3 (patch)
treeb5737cdf81857e3c4f896da5ff5a9d5f1f935ff9
parent69d2ea284602f0801fbffedd29239821e7915d3e (diff)
BEP: explicitly mark the important outputs as deprecated
While the fact that they are only added temporarily is obvious from the comment, a machine-readable deprecation annotation is more likely to be honored. So add it. PiperOrigin-RevId: 156846712
-rw-r--r--src/main/java/com/google/devtools/build/lib/buildeventstream/proto/build_event_stream.proto2
1 files changed, 1 insertions, 1 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 200dedd570..02f9f2a5f7 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
@@ -362,7 +362,7 @@ message TargetComplete {
// Temporarily, also report the important outputs directly. This is only to
// allow existing clients help transition to the deduplicated representation;
// new clients should not use it.
- repeated File important_output = 4;
+ repeated File important_output = 4 [deprecated = true];
// List of tags associated with this target.
repeated string tag = 3;