mirror of
https://github.com/google/brotli.git
synced 2026-04-05 21:52:51 +00:00
21 lines
502 B
Python
21 lines
502 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_fuzz",
|
|
version = "1.2.0",
|
|
repo_name = "org_brotli_fuzz",
|
|
)
|
|
|
|
bazel_dep(name = "rules_fuzzing", version = "0.6.0")
|
|
|
|
bazel_dep(name = "brotli", version = "1.2.0", repo_name = "org_brotli")
|
|
local_path_override(
|
|
module_name = "brotli",
|
|
path = "../..",
|
|
)
|