mirror of
https://github.com/google/brotli.git
synced 2024-11-09 21:50:07 +00:00
2d0947f1ea
PiperOrigin-RevId: 546848285
24 lines
615 B
Plaintext
24 lines
615 B
Plaintext
workspace(name = "org_brotli_fuzz")
|
|
|
|
local_repository(
|
|
name = "org_brotli",
|
|
path = "../..",
|
|
)
|
|
|
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
|
|
|
http_archive(
|
|
name = "rules_fuzzing",
|
|
sha256 = "d9002dd3cd6437017f08593124fdd1b13b3473c7b929ceb0e60d317cb9346118",
|
|
strip_prefix = "rules_fuzzing-0.3.2",
|
|
urls = ["https://github.com/bazelbuild/rules_fuzzing/archive/v0.3.2.zip"],
|
|
)
|
|
|
|
load("@rules_fuzzing//fuzzing:repositories.bzl", "rules_fuzzing_dependencies")
|
|
|
|
rules_fuzzing_dependencies()
|
|
|
|
load("@rules_fuzzing//fuzzing:init.bzl", "rules_fuzzing_init")
|
|
|
|
rules_fuzzing_init()
|