Expand ALL_FUZZER_SUPPORTED_ARCH to include all Android supported archs

Upstream it declares X86 as the only supported libfuzzer arch, to
prevent issues with cross compilation. This change adds all the Android
supported archs to ALL_FUZZER_SUPPORTED_ARCH. We need to figure out a
way to upstream a proper fix for this.

Bug: 70819574
Change-Id: I34132b41a1138611afc5c87f26bc4bd0d5c7e1c9
diff --git a/cmake/config-ix.cmake b/cmake/config-ix.cmake
index 8ab9f1f..30aee79 100644
--- a/cmake/config-ix.cmake
+++ b/cmake/config-ix.cmake
@@ -225,7 +225,7 @@
 set(ALL_ASAN_SUPPORTED_ARCH ${X86} ${X86_64} ${ARM32} ${ARM64}
     ${MIPS32} ${MIPS64} ${PPC64} ${S390X})
 set(ALL_DFSAN_SUPPORTED_ARCH ${X86_64} ${MIPS64} ${ARM64})
-set(ALL_FUZZER_SUPPORTED_ARCH ${X86_64} ${ARM64})
+set(ALL_FUZZER_SUPPORTED_ARCH ${X86} ${X86_64} ${ARM32} ${ARM64} ${MIPS32} ${MIPS64})
 
 if(APPLE)
   set(ALL_LSAN_SUPPORTED_ARCH ${X86} ${X86_64} ${MIPS64} ${ARM64})