aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYannic <yannic@engflow.com>2023-02-27 21:05:02 +0200
committerGitHub <noreply@github.com>2023-02-27 14:05:02 -0500
commitab2c7012f31b662fba949baca7218015dfd15399 (patch)
tree0ce3cf6f4a223a35aafae0908140d98cfd595a34
parent3a21deee813d0b98aaeef9737c720e509e10dc8b (diff)
downloadbazelbuild-remote-apis-ab2c7012f31b662fba949baca7218015dfd15399.tar.gz
Add value for brotli compression (#241)
https://en.wikipedia.org/wiki/Brotli
-rw-r--r--build/bazel/remote/execution/v2/remote_execution.proto3
1 files changed, 3 insertions, 0 deletions
diff --git a/build/bazel/remote/execution/v2/remote_execution.proto b/build/bazel/remote/execution/v2/remote_execution.proto
index 60753f7..7a3d2e5 100644
--- a/build/bazel/remote/execution/v2/remote_execution.proto
+++ b/build/bazel/remote/execution/v2/remote_execution.proto
@@ -1803,6 +1803,9 @@ message Compressor {
// It is advised to use algorithms such as Zstandard instead, as
// those are faster and/or provide a better compression ratio.
DEFLATE = 2;
+
+ // Brotli compression.
+ BROTLI = 3;
}
}