Merge "Fix check-boot-jars when a boot jar is provided by prebuilt" am: 0e63a8e761
am: ac2a42054f
Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1341756 Change-Id: Ife514f78e7aea0b8ed05f74c21d3ce95054796cc
This commit is contained in:
@@ -500,11 +500,16 @@ func (j *Module) OutputFiles(tag string) (android.Paths, error) {
|
||||
|
||||
var _ android.OutputFileProducer = (*Module)(nil)
|
||||
|
||||
type Dependency interface {
|
||||
// Methods that need to be implemented for a module that is added to apex java_libs property.
|
||||
type ApexDependency interface {
|
||||
HeaderJars() android.Paths
|
||||
ImplementationAndResourcesJars() android.Paths
|
||||
}
|
||||
|
||||
type Dependency interface {
|
||||
ApexDependency
|
||||
ImplementationJars() android.Paths
|
||||
ResourceJars() android.Paths
|
||||
ImplementationAndResourcesJars() android.Paths
|
||||
DexJarBuildPath() android.Path
|
||||
DexJarInstallPath() android.Path
|
||||
AidlIncludeDirs() android.Paths
|
||||
|
Reference in New Issue
Block a user