|
|
|
@ -3,6 +3,7 @@ workspace(name = "upb") |
|
|
|
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") |
|
|
|
|
load("@bazel_tools//tools/build_defs/repo:git.bzl", "new_git_repository") |
|
|
|
|
load("//bazel:workspace_deps.bzl", "upb_deps") |
|
|
|
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") |
|
|
|
|
|
|
|
|
|
upb_deps() |
|
|
|
|
|
|
|
|
@ -38,3 +39,18 @@ new_git_repository( |
|
|
|
|
build_file = "//benchmarks:BUILD.googleapis", |
|
|
|
|
patch_cmds = ["find google -type f -name BUILD.bazel -delete"], |
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
http_archive( |
|
|
|
|
name = "rules_fuzzing", |
|
|
|
|
sha256 = "127d7c45e9b7520b3c42145b3cb1b8c26477cdaed0521b02a0298907339fefa1", |
|
|
|
|
strip_prefix = "rules_fuzzing-0.2.0", |
|
|
|
|
urls = ["https://github.com/bazelbuild/rules_fuzzing/archive/v0.2.0.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() |
|
|
|
|