Merge changes from topic "musl_arm64"

* changes:
  Disable sanitizers that use runtimes for linux_musl arm64
  Separate host and host cross fuzz packaging
This commit is contained in:
Colin Cross
2023-05-19 18:03:22 +00:00
committed by Gerrit Code Review
3 changed files with 21 additions and 2 deletions

View File

@@ -150,7 +150,9 @@ func (s *javaFuzzPackager) GenerateBuildActions(ctx android.SingletonContext) {
}
hostOrTargetString := "target"
if javaFuzzModule.Host() {
if javaFuzzModule.Target().HostCross {
hostOrTargetString = "host_cross"
} else if javaFuzzModule.Host() {
hostOrTargetString = "host"
}