From 86b0620dc7868c412d577471653b8d2992099d29 Mon Sep 17 00:00:00 2001 From: Nan Zhang Date: Fri, 21 Sep 2018 17:09:21 -0700 Subject: [PATCH] Add comment for naming jdiffdocZip in droiddoc.go Add comment to provide some cautions in case of we make some changes on the jdiffdocZip name in the future. Test: N/A Bug: b/116221385 Change-Id: I3b612d50465f7feb87bc26ef81e692bf72d6f98f --- java/droiddoc.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/java/droiddoc.go b/java/droiddoc.go index a4050d552..b947b12ab 100644 --- a/java/droiddoc.go +++ b/java/droiddoc.go @@ -1631,6 +1631,9 @@ func (d *Droidstubs) GenerateAndroidBuildActions(ctx android.ModuleContext) { if Bool(d.properties.Jdiff_enabled) && !ctx.Config().IsPdkBuild() { + // Please sync with android-api-council@ before making any changes for the name of jdiffDocZip below + // since there's cron job downstream that fetch this .zip file periodically. + // See b/116221385 for reference. d.jdiffDocZip = android.PathForModuleOut(ctx, ctx.ModuleName()+"-"+"jdiff-docs.zip") d.jdiffStubsSrcJar = android.PathForModuleOut(ctx, ctx.ModuleName()+"-"+"jdiff-stubs.srcjar")