aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCory Barker <cobark@google.com>2022-10-06 22:49:07 +0000
committerCory Barker <cobark@google.com>2022-10-06 22:49:07 +0000
commit4d5be65020c98240c46ed35ff27af8398e6fc4fd (patch)
tree100ef3520385d67249917e0c08e9df763762aa03
parentbaa144a7a41f97bc0ff8161110cf142903d18878 (diff)
downloadjazzer-api-4d5be65020c98240c46ed35ff27af8398e6fc4fd.tar.gz
Adding JazzerSetup target to build everything needed for Java development. There are Jazzer scripts that need these built
Test: Built locally and tested scenario Bug: 249123010 Change-Id: I4627b4298f8f3a3903cf2d59571eb9b01a9ede34
-rw-r--r--Android.bp8
-rw-r--r--JazzerSetup.java6
2 files changed, 14 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index 7841cd32..d4377f44 100644
--- a/Android.bp
+++ b/Android.bp
@@ -53,3 +53,11 @@ java_library {
],
visibility: ["//visibility:public"],
}
+
+java_binary {
+ name: "jazzer_setup",
+ host_supported: true,
+ srcs: [
+ "JazzerSetup.java",
+ ],
+}
diff --git a/JazzerSetup.java b/JazzerSetup.java
new file mode 100644
index 00000000..b0624cc5
--- /dev/null
+++ b/JazzerSetup.java
@@ -0,0 +1,6 @@
+package com.jazzer;
+public class JazzerSetup {
+ public static void main (String[] args) {
+ System.out.println("Init'd");
+ }
+} \ No newline at end of file