Disable ASAN on linux_bionic timeout_dumper

Run-test does not setup the library path correctly to handle ASAN with
this binary at this time. Just disable it for now.

Test: timeout -k 120s -s SIGRTMIN+2 2s \
         $OUT_DIR/soong/host/linux_bionic-x86/bin/timeout_dumper \
         sh -c 'echo $$; sleep 1000'
Bug: 119673278
Change-Id: I71e2728a91e2bf48bfcd531ebd87df9b911f424a
diff --git a/tools/timeout_dumper/Android.bp b/tools/timeout_dumper/Android.bp
index dfd5442..bb813d4 100644
--- a/tools/timeout_dumper/Android.bp
+++ b/tools/timeout_dumper/Android.bp
@@ -22,6 +22,11 @@
         darwin: {
             enabled: false,
         },
+        linux_bionic: {
+            sanitize: {
+                address: false,
+            },
+        },
     },
     device_supported: false,