Merge "Disable vts_proto_fuzzer from continuous fuzzing infra."
am: 50dfcb0125

Change-Id: I6ff7d3e5325131848fa40523a3e2607e90771787
diff --git a/iface_fuzzer/Android.bp b/iface_fuzzer/Android.bp
index c52182d..719e11e 100644
--- a/iface_fuzzer/Android.bp
+++ b/iface_fuzzer/Android.bp
@@ -47,4 +47,11 @@
         "-Wno-c99-extensions",
         "-fno-omit-frame-pointer",
     ],
+    fuzz_config: {
+        // This fuzz target requires a custom argv, and lots of custom data
+        // (HAL interface definitions) to be manually pushed to the device.
+        // Neither of these are supported on continuous fuzzing infra, so stop
+        // it from running there.
+        disable: true,
+    },
 }