Change name of droiddoc target output to *-stubs.srcjar am: 3bb14200e2
am: b1e6641a77
Change-Id: I43a8440c4ed4404097d9e2f2e947b03c8f1cc9e9
This commit is contained in:
commit
7f5686aee1
2 changed files with 3 additions and 3 deletions
|
@ -249,7 +249,7 @@ func (j *Javadoc) collectDeps(ctx android.ModuleContext) deps {
|
|||
j.srcFiles = srcFiles.FilterOutByExt(".srcjar")
|
||||
|
||||
j.docZip = android.PathForModuleOut(ctx, ctx.ModuleName()+"-"+"docs.zip")
|
||||
j.stubsJar = android.PathForModuleOut(ctx, ctx.ModuleName()+"-"+"stubs.jar")
|
||||
j.stubsJar = android.PathForModuleOut(ctx, ctx.ModuleName()+"-"+"stubs.srcjar")
|
||||
|
||||
if j.properties.Local_sourcepaths == nil {
|
||||
j.properties.Local_sourcepaths = append(j.properties.Local_sourcepaths, ".")
|
||||
|
|
|
@ -886,8 +886,8 @@ func TestDroiddoc(t *testing.T) {
|
|||
}
|
||||
`)
|
||||
|
||||
stubsJar := filepath.Join(buildDir, ".intermediates", "bar-doc", "android_common", "bar-doc-stubs.jar")
|
||||
barDoc := ctx.ModuleForTests("bar-doc", "android_common").Output("bar-doc-stubs.jar")
|
||||
stubsJar := filepath.Join(buildDir, ".intermediates", "bar-doc", "android_common", "bar-doc-stubs.srcjar")
|
||||
barDoc := ctx.ModuleForTests("bar-doc", "android_common").Output("bar-doc-stubs.srcjar")
|
||||
if stubsJar != barDoc.Output.String() {
|
||||
t.Errorf("expected stubs Jar [%q], got %q", stubsJar, barDoc.Output.String())
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue