mirror of
https://github.com/google/brotli.git
synced 2024-11-08 21:30:04 +00:00
70e7b1ae4a
PiperOrigin-RevId: 545950923
13 lines
338 B
Python
13 lines
338 B
Python
load("@rules_fuzzing//fuzzing:cc_defs.bzl", "cc_fuzz_test")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
licenses(["notice"]) # MIT
|
|
|
|
# To start fuzzing run: bazel run --config=asan-libfuzzer //:fuzz_config_run
|
|
cc_fuzz_test(
|
|
name = "decode_fuzzer",
|
|
srcs = ["decode_fuzzer.c"],
|
|
deps = ["@org_brotli//:brotlidec"],
|
|
)
|