Recognize libdl_android as a Bionic library.

Necessary to create the symlinks from /system/lib{,64} to the Runtime APEX.

Test: build & boot
Bug: 135753770
Change-Id: I231b4ec48869843de233ebb7c2e4fc5a49e7288a
diff --git a/cc/cc.go b/cc/cc.go
index 5dfc563..db7f0f6 100644
--- a/cc/cc.go
+++ b/cc/cc.go
@@ -877,7 +877,7 @@
 
 func isBionic(name string) bool {
 	switch name {
-	case "libc", "libm", "libdl", "linker":
+	case "libc", "libm", "libdl", "libdl_android", "linker":
 		return true
 	}
 	return false