Disable some sanitizers on libnlinterceptor targets.

ASan is not meant to be enabled in production binaries, and the fuzzer
"sanitizer" is only intended to be used with fuzz targets. So disable
both of them.

Change-Id: Ice7d8d3fd6621077d485b430d9e06fb3ba240e87
This commit is contained in:
Peter Collingbourne 2022-09-30 18:08:10 -07:00
parent b3d143edc6
commit f10ee08f84

View file

@ -37,10 +37,8 @@ cc_defaults {
"libutils",
],
sanitize: {
address: true,
undefined: true,
all_undefined: true,
fuzzer: true,
cfi: true,
integer_overflow: true,
scs: true,