Updated Android.bp to build fuzzer target am: 5ad98b04fb am: 6ae43a93d4 am: b28f7d9740
am: c98b9f03ef

Change-Id: I8b4d765ab5129309e395fa1469a68252220ee04f
diff --git a/Android.bp b/Android.bp
index cd50576..523bb8c 100644
--- a/Android.bp
+++ b/Android.bp
@@ -508,3 +508,45 @@
     },
 
 }
+
+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",
+    ],
+}
diff --git a/Android.bp.in b/Android.bp.in
index 04f571f..e5851db 100644
--- a/Android.bp.in
+++ b/Android.bp.in
@@ -107,3 +107,45 @@
     },
 
 }
+
+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",
+    ],
+}