summaryrefslogtreecommitdiffstats
path: root/Android.bp
diff options
context:
space:
mode:
Diffstat (limited to 'Android.bp')
-rw-r--r--Android.bp42
1 files changed, 42 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index cd50576..523bb8c 100644
--- a/Android.bp
+++ b/Android.bp
@@ -508,3 +508,45 @@ cc_library_static {
},
}
+
+cc_fuzz {
+ name: "av1_dec_fuzzer",
+ host_supported: true,
+ srcs: [
+ "libaom/examples/av1_dec_fuzzer.cc",
+ ],
+ arch: {
+ arm: {
+ neon: {
+ local_include_dirs: [
+ "config/",
+ "config/arm/",
+ ],
+ },
+ },
+
+ arm64: {
+ local_include_dirs: [
+ "config/",
+ "config/arm64/",
+ ],
+ },
+
+ x86: {
+ local_include_dirs: [
+ "config/",
+ "config/x86/",
+ ],
+ },
+
+ x86_64: {
+ local_include_dirs: [
+ "config/",
+ "config/x86_64/",
+ ],
+ },
+ },
+ static_libs: [
+ "libaom",
+ ],
+}