Merge "Revert submission 1191937-art_apex_available"
This commit is contained in:
commit
e734db5e98
|
@ -16,6 +16,7 @@ package java
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"strings"
|
||||||
|
|
||||||
"android/soong/android"
|
"android/soong/android"
|
||||||
)
|
)
|
||||||
|
@ -152,11 +153,23 @@ func stubFlagsRule(ctx android.SingletonContext) {
|
||||||
// Collect dex jar paths for modules that had hiddenapi encode called on them.
|
// Collect dex jar paths for modules that had hiddenapi encode called on them.
|
||||||
if h, ok := module.(hiddenAPIIntf); ok {
|
if h, ok := module.(hiddenAPIIntf); ok {
|
||||||
if jar := h.bootDexJar(); jar != nil {
|
if jar := h.bootDexJar(); jar != nil {
|
||||||
// For a java lib included in an APEX, only take the one built for
|
// Don't add multiple variants of the same library to bootDexJars, otherwise
|
||||||
// the platform variant, and skip the variants for APEXes.
|
// hiddenapi tool will complain about duplicated classes. Such multiple variants
|
||||||
// Otherwise, the hiddenapi tool will complain about duplicated classes
|
// of the same library can happen when the library is included in one or more APEXes.
|
||||||
if a, ok := module.(android.ApexModule); ok {
|
// TODO(b/146308764): remove this heuristic
|
||||||
if android.InAnyApex(module.Name()) && !a.IsForPlatform() {
|
if a, ok := module.(android.ApexModule); ok && android.InAnyApex(module.Name()) {
|
||||||
|
if a.AvailableFor("//apex_available:platform") && !a.IsForPlatform() {
|
||||||
|
// skip the apex variants if the jar is available for the platform
|
||||||
|
return
|
||||||
|
}
|
||||||
|
apexName := a.ApexName()
|
||||||
|
if strings.Contains(apexName, "test") {
|
||||||
|
// skip the if the jar is in test APEX
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if strings.Contains(apexName, "com.android.art") && apexName != "com.android.art.release" {
|
||||||
|
// skip the ART APEX variants other than com.android.art.release
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue