diff options
Diffstat (limited to 'sh/sh_binary.go')
-rw-r--r-- | sh/sh_binary.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sh/sh_binary.go b/sh/sh_binary.go index 4fe6fdda0..79a885fa9 100644 --- a/sh/sh_binary.go +++ b/sh/sh_binary.go @@ -583,7 +583,7 @@ type bazelShTestAttributes struct { Auto_gen_config *bool } -func (m *ShBinary) ConvertWithBp2build(ctx android.TopDownMutatorContext) { +func (m *ShBinary) ConvertWithBp2build(ctx android.Bp2buildMutatorContext) { srcs := bazel.MakeLabelListAttribute( android.BazelLabelForModuleSrc(ctx, []string{*m.properties.Src})) @@ -611,7 +611,7 @@ func (m *ShBinary) ConvertWithBp2build(ctx android.TopDownMutatorContext) { ctx.CreateBazelTargetModule(props, android.CommonAttributes{Name: m.Name()}, attrs) } -func (m *ShTest) ConvertWithBp2build(ctx android.TopDownMutatorContext) { +func (m *ShTest) ConvertWithBp2build(ctx android.Bp2buildMutatorContext) { srcs := bazel.MakeLabelListAttribute( android.BazelLabelForModuleSrc(ctx, []string{*m.properties.Src})) |