Merge "Move API providing modules from bp2build to api_bp2build workspace"

This commit is contained in:
Spandan Das
2022-10-05 19:40:01 +00:00
committed by Gerrit Code Review
7 changed files with 22 additions and 15 deletions

View File

@@ -3729,6 +3729,13 @@ func (c *Module) ConvertWithBp2build(ctx android.TopDownMutatorContext) {
} else {
sharedOrStaticLibraryBp2Build(ctx, c, false)
}
}
}
var _ android.ApiProvider = (*Module)(nil)
func (c *Module) ConvertWithApiBp2build(ctx android.TopDownMutatorContext) {
switch c.typ() {
case ndkLibrary:
ndkLibraryBp2build(ctx, c)
}