Merge "Make SharedLibraryInfo comment clearer."

This commit is contained in:
Jingwen Chen
2021-06-16 12:01:21 +00:00
committed by Gerrit Code Review

View File

@@ -607,10 +607,9 @@ func (handler *ccLibraryBazelHandler) generateSharedBazelBuildActions(ctx androi
ctx.SetProvider(SharedLibraryInfoProvider, SharedLibraryInfo{ ctx.SetProvider(SharedLibraryInfoProvider, SharedLibraryInfo{
TableOfContents: tocFile, TableOfContents: tocFile,
SharedLibrary: outputFilePath, SharedLibrary: outputFilePath,
Target: ctx.Target(),
// TODO(b/190524881): Include transitive static libraries in this provider to support // TODO(b/190524881): Include transitive static libraries in this provider to support
// static libraries with deps. // static libraries with deps. The provider key for this is TransitiveStaticLibrariesForOrdering.
//TransitiveStaticLibrariesForOrdering
Target: ctx.Target(),
}) })
return true return true
} }