Blacklist some vendor binaries from sanitized builds.

Changes thermal-engine and qmuxd so that these binaries are not
compiled with ASAN (when SANITIZE_TARGET="address" is used). This is
unfortunate, but needs to happen to free up space on the vendor
partition.

Bug: 36201281
Test: SANITIZE_TARGET="address coverage" m -j40 builds without
overflowing vendor.

Change-Id: I22dd9721fa7e3626409f91878af97587673e02eb
diff --git a/device.mk b/device.mk
index 25ba0a9..5627267 100644
--- a/device.mk
+++ b/device.mk
@@ -617,3 +617,7 @@
 # b/29995499
 $(call add-product-sanitizer-module-config,cameraserver,never)
 $(call add-product-sanitizer-module-config,mm-qcamera-daemon,never)
+
+# b/36201281
+$(call add-product-sanitizer-module-config,thermal-engine,never)
+$(call add-product-sanitizer-module-config,qmuxd,never)