Prevent index out of range

am: b674a5226a

Change-Id: Ie518981659c3aea595bac9c4b4bc12bfe332fc1a
This commit is contained in:
Jiyong Park
2018-05-05 17:35:29 -07:00
committed by android-build-merger

View File

@@ -164,15 +164,21 @@ func (module *sdkLibrary) AndroidMk() android.AndroidMkData {
fmt.Fprintln(w, "LOCAL_REQUIRED_MODULES := "+module.implName()) fmt.Fprintln(w, "LOCAL_REQUIRED_MODULES := "+module.implName())
fmt.Fprintln(w, "include $(BUILD_PHONY_PACKAGE)") fmt.Fprintln(w, "include $(BUILD_PHONY_PACKAGE)")
// Create dist rules to install the stubs libs to the dist dir // Create dist rules to install the stubs libs to the dist dir
fmt.Fprintln(w, "$(call dist-for-goals,sdk win_sdk,"+ if len(module.publicApiStubsPath) == 1 {
module.publicApiStubsPath.Strings()[0]+ fmt.Fprintln(w, "$(call dist-for-goals,sdk win_sdk,"+
":"+path.Join("apistubs", "public", module.BaseModuleName()+".jar")+")") module.publicApiStubsPath.Strings()[0]+
fmt.Fprintln(w, "$(call dist-for-goals,sdk win_sdk,"+ ":"+path.Join("apistubs", "public", module.BaseModuleName()+".jar")+")")
module.systemApiStubsPath.Strings()[0]+ }
":"+path.Join("apistubs", "system", module.BaseModuleName()+".jar")+")") if len(module.systemApiStubsPath) == 1 {
fmt.Fprintln(w, "$(call dist-for-goals,sdk win_sdk,"+ fmt.Fprintln(w, "$(call dist-for-goals,sdk win_sdk,"+
module.testApiStubsPath.Strings()[0]+ module.systemApiStubsPath.Strings()[0]+
":"+path.Join("apistubs", "test", module.BaseModuleName()+".jar")+")") ":"+path.Join("apistubs", "system", module.BaseModuleName()+".jar")+")")
}
if len(module.testApiStubsPath) == 1 {
fmt.Fprintln(w, "$(call dist-for-goals,sdk win_sdk,"+
module.testApiStubsPath.Strings()[0]+
":"+path.Join("apistubs", "test", module.BaseModuleName()+".jar")+")")
}
}, },
} }
} }