Skip to content

Commit

Permalink
insert missing fuzz/WORKSPACE content
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 546848285
  • Loading branch information
eustas authored and Copybara-Service committed Jul 10, 2023
1 parent 2e6164d commit 2d0947f
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions c/fuzz/WORKSPACE.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
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()

0 comments on commit 2d0947f

Please sign in to comment.