diff options
author | JaeMan Park <jaeman@google.com> | 2020-12-02 04:39:10 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2020-12-02 04:39:10 +0000 |
commit | a4d314c91c2fc828d74661cae7a1b2bad1955af6 (patch) | |
tree | 114f61c416ebe2d8b842a2424acc82352f7ba4a0 /java/java.go | |
parent | d8c099e12debd483b7224704c1e197ec5c95fde7 (diff) | |
parent | ff71556a53283c6df0df6dce36c944d1df1b3e87 (diff) |
Merge "Add java sdk library enforcement flag"
Diffstat (limited to 'java/java.go')
-rw-r--r-- | java/java.go | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/java/java.go b/java/java.go index 8738e00cf..9000f7478 100644 --- a/java/java.go +++ b/java/java.go @@ -772,6 +772,37 @@ func (j *Module) deps(ctx android.BottomUpMutatorContext) { libDeps := ctx.AddVariationDependencies(nil, libTag, rewriteSyspropLibs(j.properties.Libs, "libs")...) ctx.AddVariationDependencies(nil, staticLibTag, rewriteSyspropLibs(j.properties.Static_libs, "static_libs")...) + if ctx.DeviceConfig().VndkVersion() != "" && ctx.Config().EnforceInterPartitionJavaSdkLibrary() { + // Require java_sdk_library at inter-partition java dependency to ensure stable + // interface between partitions. If inter-partition java_library dependency is detected, + // raise build error because java_library doesn't have a stable interface. + // + // Inputs: + // PRODUCT_ENFORCE_INTER_PARTITION_JAVA_SDK_LIBRARY + // if true, enable enforcement + // PRODUCT_INTER_PARTITION_JAVA_LIBRARY_ALLOWLIST + // exception list of java_library names to allow inter-partition dependency + for idx, lib := range j.properties.Libs { + if libDeps[idx] == nil { + continue + } + + if _, ok := syspropPublicStubs[lib]; ok { + continue + } + + if javaDep, ok := libDeps[idx].(javaSdkLibraryEnforceContext); ok { + // java_sdk_library is always allowed at inter-partition dependency. + // So, skip check. + if _, ok := javaDep.(*SdkLibrary); ok { + continue + } + + j.checkPartitionsForJavaDependency(ctx, "libs", javaDep) + } + } + } + // For library dependencies that are component libraries (like stubs), add the implementation // as a dependency (dexpreopt needs to be against the implementation library, not stubs). for _, dep := range libDeps { |