Remove gwp_asan_crash_handler dependency from libc

This was a single function that we actually needed
(__gwp_asan_error_is_mine) that I've just moved into 'gwp_asan' as well.
This allows us to remove the dependency on 'gwp_asan_crash_handler',
which originally resulted in duplicate definitions of other stuff that
was used in both libraries (revealed in aosp/3150976).

Bug: N/A
Test: m libc
Change-Id: Ibf1a0a5abb3a58f9b06bd43731f079df5503f5c7
diff --git a/libc/Android.bp b/libc/Android.bp
index 5063364..a2d2e0c 100644
--- a/libc/Android.bp
+++ b/libc/Android.bp
@@ -1560,7 +1560,6 @@
         cflags: ["-DLIBC_STATIC"],
         whole_static_libs: [
             "gwp_asan",
-            "gwp_asan_crash_handler",
             "libc_init_static",
             "libc_common_static",
             "libc_unwind_static",
@@ -1570,7 +1569,6 @@
         srcs: [":libc_sources_shared"],
         whole_static_libs: [
             "gwp_asan",
-            "gwp_asan_crash_handler",
             "libc_init_dynamic",
             "libc_common_shared",
             "libunwind-exported",