aboutsummaryrefslogtreecommitdiff
path: root/files/fuzz/Android.bp
diff options
context:
space:
mode:
Diffstat (limited to 'files/fuzz/Android.bp')
-rw-r--r--files/fuzz/Android.bp15
1 files changed, 15 insertions, 0 deletions
diff --git a/files/fuzz/Android.bp b/files/fuzz/Android.bp
new file mode 100644
index 00000000..be3c78e6
--- /dev/null
+++ b/files/fuzz/Android.bp
@@ -0,0 +1,15 @@
+
+cc_fuzz {
+ name: "libyuv_mjpeg_dec_fuzz",
+ host_supported: false,
+ srcs: [
+ "mjpeg_dec_fuzz.cc",
+ ],
+ static_libs: [
+ "libyuv",
+ ],
+
+ shared_libs: [
+ "libjpeg",
+ ],
+}