| # Copyright 2020 Google LLC |
| # |
| # Licensed under the Apache License, Version 2.0 (the "License"); |
| # you may not use this file except in compliance with the License. |
| # You may obtain a copy of the License at |
| # |
| # https://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| |
| """Contains the external dependencies.""" |
| |
| load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") |
| load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe") |
| load("//fuzzing/private/oss_fuzz:repository.bzl", "oss_fuzz_repository") |
| |
| def rules_fuzzing_dependencies(oss_fuzz = True, honggfuzz = True, jazzer = False): |
| """Instantiates the dependencies of the fuzzing rules. |
| |
| Args: |
| oss_fuzz: Include OSS-Fuzz dependencies. |
| honggfuzz: Include Honggfuzz dependencies. |
| jazzer: Include Jazzer repository. Instantiating all Jazzer dependencies |
| additionally requires invoking jazzer_dependencies() in |
| @jazzer//:repositories.bzl and jazzer_init() in @jazzer//:init.bzl. |
| """ |
| |
| maybe( |
| http_archive, |
| name = "rules_python", |
| url = "https://github.com/bazelbuild/rules_python/releases/download/0.1.0/rules_python-0.1.0.tar.gz", |
| sha256 = "b6d46438523a3ec0f3cead544190ee13223a52f6a6765a29eae7b7cc24cc83a0", |
| ) |
| maybe( |
| http_archive, |
| name = "bazel_skylib", |
| urls = [ |
| "https://github.com/bazelbuild/bazel-skylib/releases/download/1.0.3/bazel-skylib-1.0.3.tar.gz", |
| "https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.0.3/bazel-skylib-1.0.3.tar.gz", |
| ], |
| sha256 = "1c531376ac7e5a180e0237938a2536de0c54d93f5c278634818e0efc952dd56c", |
| ) |
| maybe( |
| http_archive, |
| name = "com_google_absl", |
| urls = ["https://github.com/abseil/abseil-cpp/archive/4611a601a7ce8d5aad169417092e3d5027aa8403.zip"], |
| strip_prefix = "abseil-cpp-4611a601a7ce8d5aad169417092e3d5027aa8403", |
| sha256 = "f4f2d3d01c3cc99eebc9f370ea626c43a54b386913aef393bf8201b2c42a9e2f", |
| ) |
| |
| if oss_fuzz: |
| maybe( |
| oss_fuzz_repository, |
| name = "rules_fuzzing_oss_fuzz", |
| ) |
| |
| if honggfuzz: |
| maybe( |
| http_archive, |
| name = "honggfuzz", |
| build_file = "@rules_fuzzing//:honggfuzz.BUILD", |
| sha256 = "a6f8040ea62e0f630737f66dce46fb1b86140f118957cb5e3754a764de7a770a", |
| url = "https://github.com/google/honggfuzz/archive/e0670137531242d66c9cf8a6dee677c055a8aacb.zip", |
| strip_prefix = "honggfuzz-e0670137531242d66c9cf8a6dee677c055a8aacb", |
| ) |
| |
| if jazzer: |
| maybe( |
| http_archive, |
| name = "jazzer", |
| sha256 = "289138a0a7d6154c51b5b2407a9ae7e1b5e4c1d0ba32fe7ef2d3929cb15578aa", |
| strip_prefix = "jazzer-978ed6a05bb9408e02b2b1c88064e5851399824b", |
| url = "https://github.com/CodeIntelligenceTesting/jazzer/archive/978ed6a05bb9408e02b2b1c88064e5851399824b.zip", |
| ) |