bp2build: genrule converter only supports "genrule".

This excludes the bp2build mutator from running for cc_genrule or
java_genrule, which may require alternative implementations.

Test: bp2build; bazel build //bionic/...
Change-Id: Ie14dd6dfa5e806fd6ac6e8f9989356f3880c79bf
This commit is contained in:
Jingwen Chen
2021-03-18 03:41:55 -04:00
parent b96a04ba49
commit 6648045f00

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)