aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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