mirror of
https://github.com/google/brotli.git
synced 2026-02-08 13:49:23 +00:00
24 lines
655 B
Python
24 lines
655 B
Python
# Copyright 2025 The Brotli Authors. All rights reserved.
|
|
#
|
|
# Distributed under MIT license.
|
|
# See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
|
|
|
|
"""Brotli reference implementation"""
|
|
|
|
module(
|
|
name = "brotli_java",
|
|
version = "1.2.0",
|
|
repo_name = "org_brotli_java",
|
|
)
|
|
|
|
bazel_dep(name = "rules_java", version = "8.12.0")
|
|
bazel_dep(name = "rules_jvm_external", version = "6.7")
|
|
bazel_dep(name = "rules_kotlin", version = "2.1.4")
|
|
bazel_dep(name = "platforms", version = "0.0.11")
|
|
|
|
bazel_dep(name = "brotli", version = "1.2.0", repo_name = "org_brotli")
|
|
local_path_override(
|
|
module_name = "brotli",
|
|
path = "..",
|
|
)
|