Disable fuzzer on boringssl's bcm_object.

boringssl does some weird packaging with bcm_object in order to comply with FIPS
certification. I believe that -fsanitize=fuzzer-no-link here is causing
additional sections to be emitted in bcm_object, and these sections are being
discarded by the linkerscript. These sections are actually required though, and
lld complains about this by SEGV-ing (a known problem with lld).

We fix this already with ASan and HWASan by disabling their instrumentation for
this object, we can do the same with sanitizer coverage (fuzzer).

Fixes: 144104643
Test: SANITIZE_TARGET=fuzzer make droid
Change-Id: Iaafbfb90ae963f88120406439d1a24e65be22e92
1 file changed