Merge "bp2build: genrule converter only supports "genrule"."

This commit is contained in:
Jingwen Chen 2021-03-18 22:41:52 +00:00 committed by Gerrit Code Review
commit c5a0089ac4
1 changed files with 5 additions and 0 deletions

View File

@ -824,6 +824,11 @@ func GenruleBp2Build(ctx android.TopDownMutatorContext) {
return
}
if ctx.ModuleType() != "genrule" {
// Not a regular genrule. Could be a cc_genrule or java_genrule.
return
}
// Bazel only has the "tools" attribute.
tools := android.BazelLabelForModuleDeps(ctx, m.properties.Tools)
tool_files := android.BazelLabelForModuleSrc(ctx, m.properties.Tool_files)