Merge "Rename DexJar interface method to DexJarBuildPath."
This commit is contained in:
@@ -501,7 +501,7 @@ type Dependency interface {
|
||||
ImplementationJars() android.Paths
|
||||
ResourceJars() android.Paths
|
||||
ImplementationAndResourcesJars() android.Paths
|
||||
DexJar() android.Path
|
||||
DexJarBuildPath() android.Path
|
||||
AidlIncludeDirs() android.Paths
|
||||
ExportedSdkLibs() []string
|
||||
ExportedPlugins() (android.Paths, []string)
|
||||
@@ -1739,7 +1739,7 @@ func (j *Module) ImplementationJars() android.Paths {
|
||||
return android.Paths{j.implementationJarFile}
|
||||
}
|
||||
|
||||
func (j *Module) DexJar() android.Path {
|
||||
func (j *Module) DexJarBuildPath() android.Path {
|
||||
return j.dexJarFile
|
||||
}
|
||||
|
||||
@@ -2565,7 +2565,7 @@ func (j *Import) ImplementationAndResourcesJars() android.Paths {
|
||||
return android.Paths{j.combinedClasspathFile}
|
||||
}
|
||||
|
||||
func (j *Import) DexJar() android.Path {
|
||||
func (j *Import) DexJarBuildPath() android.Path {
|
||||
return nil
|
||||
}
|
||||
|
||||
@@ -2752,7 +2752,7 @@ func (j *DexImport) GenerateAndroidBuildActions(ctx android.ModuleContext) {
|
||||
j.Stem()+".jar", dexOutputFile)
|
||||
}
|
||||
|
||||
func (j *DexImport) DexJar() android.Path {
|
||||
func (j *DexImport) DexJarBuildPath() android.Path {
|
||||
return j.dexJarFile
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user