Merge "Mixed builds is supported for all apex module types, not just "apex"."
diff --git a/apex/apex.go b/apex/apex.go
index ac81885..957c94b 100644
--- a/apex/apex.go
+++ b/apex/apex.go
@@ -1942,7 +1942,7 @@
 var _ android.MixedBuildBuildable = (*apexBundle)(nil)
 
 func (a *apexBundle) IsMixedBuildSupported(ctx android.BaseModuleContext) bool {
-	return ctx.ModuleType() == "apex" && a.properties.ApexType == imageApex
+	return a.properties.ApexType == imageApex
 }
 
 func (a *apexBundle) QueueBazelCall(ctx android.BaseModuleContext) {