diff --git a/tests/Android.bp b/tests/Android.bp
index 19aca9ccd6b4ff060487c375d0dd9bcd0b70559c..5b2f78d2b6284fcacaadde292ec8bbfa32af2f86 100644
--- a/tests/Android.bp
+++ b/tests/Android.bp
@@ -1,9 +1,18 @@
 cc_library_host_shared {
     name: "libsepolwrap",
     srcs: ["sepol_wrap.cpp"],
-    shared_libs: ["libbase", "libsepol"],
+    shared_libs: ["libsepol"],
     cflags: ["-Wall", "-Werror",],
     export_include_dirs: ["include"],
+
+    // libsepolwrap gets loaded from the system python, which does not have the
+    // ASAN runtime. So turn off sanitization for ourself, and  use static
+    // libraries, since the shared libraries will use ASAN.
+    static_libs: ["libbase"],
+    stl: "libc++_static",
+    sanitize: {
+        never: true,
+    },
 }
 
 cc_prebuilt_binary {