[PR #1134] [MERGED] add pure-kotlin decoder #1690

Open
opened 2026-01-29 20:55:21 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/google/brotli/pull/1134
Author: @copybara-service[bot]
Created: 2/20/2024
Status: Merged
Merged: 2/21/2024
Merged by: @undefined

Base: masterHead: test_608531400


📝 Commits (1)

📊 Changes

12 files changed (+2134 additions, -74 deletions)

View changed files

📝 .github/workflows/build_test.yml (+3 -2)
📝 java/WORKSPACE.bazel (+14 -0)
📝 java/org/brotli/dec/BUILD.bazel (+9 -0)
📝 java/org/brotli/dec/DecodeTest.java (+42 -54)
📝 java/org/brotli/dec/SynthTest.java (+6 -14)
java/org/brotli/dec/TestUtils.java (+35 -0)
📝 java/org/brotli/dec/build_defs.bzl (+20 -1)
java/org/brotli/dec/kt/BUILD.bazel (+17 -0)
java/org/brotli/dec/kt/BrotliInputStream.kt (+138 -0)
java/org/brotli/dec/kt/Decode.kt (+1845 -0)
📝 java/org/brotli/integration/BUILD.bazel (+2 -1)
📝 java/org/brotli/integration/BundleChecker.java (+3 -2)

📄 Description

add pure-kotlin decoder


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/google/brotli/pull/1134 **Author:** [@copybara-service[bot]](https://github.com/apps/copybara-service) **Created:** 2/20/2024 **Status:** ✅ Merged **Merged:** 2/21/2024 **Merged by:** [@undefined](undefined) **Base:** `master` ← **Head:** `test_608531400` --- ### 📝 Commits (1) - [`ccec962`](https://github.com/google/brotli/commit/ccec9628e49208173c9a8829ff66d0d7f6ceff5f) add pure-kotlin decoder ### 📊 Changes **12 files changed** (+2134 additions, -74 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/build_test.yml` (+3 -2) 📝 `java/WORKSPACE.bazel` (+14 -0) 📝 `java/org/brotli/dec/BUILD.bazel` (+9 -0) 📝 `java/org/brotli/dec/DecodeTest.java` (+42 -54) 📝 `java/org/brotli/dec/SynthTest.java` (+6 -14) ➕ `java/org/brotli/dec/TestUtils.java` (+35 -0) 📝 `java/org/brotli/dec/build_defs.bzl` (+20 -1) ➕ `java/org/brotli/dec/kt/BUILD.bazel` (+17 -0) ➕ `java/org/brotli/dec/kt/BrotliInputStream.kt` (+138 -0) ➕ `java/org/brotli/dec/kt/Decode.kt` (+1845 -0) 📝 `java/org/brotli/integration/BUILD.bazel` (+2 -1) 📝 `java/org/brotli/integration/BundleChecker.java` (+3 -2) </details> ### 📄 Description add pure-kotlin decoder --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 20:55:21 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/brotli#1690