aboutsummaryrefslogtreecommitdiff
path: root/build/bazel/remote/execution/v2/remote_execution.proto
diff options
context:
space:
mode:
Diffstat (limited to 'build/bazel/remote/execution/v2/remote_execution.proto')
-rw-r--r--build/bazel/remote/execution/v2/remote_execution.proto8
1 files changed, 8 insertions, 0 deletions
diff --git a/build/bazel/remote/execution/v2/remote_execution.proto b/build/bazel/remote/execution/v2/remote_execution.proto
index 235a9f3..6f7cdde 100644
--- a/build/bazel/remote/execution/v2/remote_execution.proto
+++ b/build/bazel/remote/execution/v2/remote_execution.proto
@@ -1685,6 +1685,14 @@ message Compressor {
// Zstandard compression.
ZSTD = 1;
+
+ // RFC 1951 Deflate. This format is identical to what is used by ZIP
+ // files. Headers such as the one generated by gzip are not
+ // included.
+ //
+ // It is advised to use algorithms such as Zstandard instead, as
+ // those are faster and/or provide a better compression ratio.
+ DEFLATE = 2;
}
}