Only add SDK file dependencies on device builds

Dependencies on sdk_vcurrent, etc. should only be added to java
modules that are building for the device.

Test: aosp-build-tools build
Change-Id: I01abba94fed8b470085529092263f4634dec229c
This commit is contained in:
Colin Cross 2018-03-06 13:11:51 -08:00
parent fd4795f58c
commit 300f038848

View file

@ -571,6 +571,7 @@ func checkLinkType(ctx android.ModuleContext, from *Module, to *Library, tag dep
func (j *Module) collectDeps(ctx android.ModuleContext) deps { func (j *Module) collectDeps(ctx android.ModuleContext) deps {
var deps deps var deps deps
if ctx.Device() {
sdkDep := decodeSdkDep(ctx, String(j.deviceProperties.Sdk_version)) sdkDep := decodeSdkDep(ctx, String(j.deviceProperties.Sdk_version))
if sdkDep.invalidVersion { if sdkDep.invalidVersion {
ctx.AddMissingDependencies([]string{sdkDep.module}) ctx.AddMissingDependencies([]string{sdkDep.module})
@ -579,6 +580,7 @@ func (j *Module) collectDeps(ctx android.ModuleContext) deps {
deps.classpath = append(deps.classpath, sdkDep.jar) deps.classpath = append(deps.classpath, sdkDep.jar)
deps.aidlIncludeDirs = append(deps.aidlIncludeDirs, sdkDep.aidl) deps.aidlIncludeDirs = append(deps.aidlIncludeDirs, sdkDep.aidl)
} }
}
ctx.VisitDirectDeps(func(module android.Module) { ctx.VisitDirectDeps(func(module android.Module) {
otherName := ctx.OtherModuleName(module) otherName := ctx.OtherModuleName(module)