Updated Android.bp to build fuzzer target

Test: av1_dec_fuzzer
Bug: 135058814
Change-Id: I0439e7a39615a75bae04f3d1129abdbfd0aea91b
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",
+    ],
+}