aboutsummaryrefslogtreecommitdiff
path: root/WORKSPACE.bazel
diff options
context:
space:
mode:
authorCory Barker <87733503+TheCoryBarker@users.noreply.github.com>2023-06-08 18:40:13 +0000
committerGitHub <noreply@github.com>2023-06-08 18:40:13 +0000
commit14855310ea4b85b4571c02e1e89ff64307286d05 (patch)
tree76f8f19ea0b06e6db8286f8cf0347e402fe3d604 /WORKSPACE.bazel
parent1ba2ae03222fa60bff118ae054560fce643bf408 (diff)
downloadjazzer-api-14855310ea4b85b4571c02e1e89ff64307286d05.tar.gz
Add ability to fuzz bootstrap classes in Android (#737)
Diffstat (limited to 'WORKSPACE.bazel')
-rw-r--r--WORKSPACE.bazel9
1 files changed, 8 insertions, 1 deletions
diff --git a/WORKSPACE.bazel b/WORKSPACE.bazel
index b53d7b78..ab0ed1cf 100644
--- a/WORKSPACE.bazel
+++ b/WORKSPACE.bazel
@@ -3,7 +3,7 @@ workspace(name = "jazzer")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive", "http_file", "http_jar")
load("//:repositories.bzl", "jazzer_dependencies")
-jazzer_dependencies()
+jazzer_dependencies(android = True)
load("//:init.bzl", "jazzer_init")
@@ -291,3 +291,10 @@ cc_library(
strip_prefix = "libprotobuf-mutator-1.1",
urls = ["https://github.com/google/libprotobuf-mutator/archive/refs/tags/v1.1.tar.gz"],
)
+
+http_file(
+ name = "android_jvmti",
+ downloaded_file_path = "jvmti.encoded",
+ sha256 = "95bd6fb4f296ff1c49b893c1d3a665de3c2b1beaa3cc8fc570dea992202daa35",
+ url = "https://android.googlesource.com/platform/art/+/1cff8449bac0fdab6e84dc9255c3cccd504c1705/openjdkjvmti/include/jvmti.h?format=TEXT",
+)