[conflict] Make native libs available to DCLA apexes 2p: 2a27c02737

Original change: https://googleplex-android-review.googlesource.com/c/platform/build/soong/+/20039127

Bug: 239679485
Change-Id: Iba8f25ec2640c896fc0f7a92ec157f52022784d3
This commit is contained in:
Dennis Shen
2022-09-23 20:50:47 +00:00

View File

@@ -454,7 +454,9 @@ func CheckAvailableForApex(what string, apex_available []string) bool {
}
return InList(what, apex_available) ||
(what != AvailableToPlatform && InList(AvailableToAnyApex, apex_available)) ||
(strings.HasPrefix(what, "com.android.gki.") && InList(AvailableToGkiApex, apex_available))
(strings.HasPrefix(what, "com.android.gki.") && InList(AvailableToGkiApex, apex_available)) ||
(what == "com.google.mainline.primary.libs") || // TODO b/248601389
(what == "com.google.mainline.go.primary.libs") // TODO b/248601389
}
// Implements ApexModule