Loading bp2build/sh_conversion_test.go +5 −1 Original line number Diff line number Diff line Loading @@ -62,11 +62,15 @@ func TestShBinarySimple(t *testing.T) { blueprint: `sh_binary { name: "foo", src: "foo.sh", filename: "foo.exe", sub_dir: "sub", bazel_module: { bp2build_available: true }, }`, expectedBazelTargets: []string{ makeBazelTarget("sh_binary", "foo", attrNameToString{ "srcs": `["foo.sh"]`, "filename": `"foo.exe"`, "sub_dir": `"sub"`, })}, }) } sh/sh_binary.go +18 −3 Original line number Diff line number Diff line Loading @@ -517,6 +517,8 @@ func ShTestHostFactory() android.Module { type bazelShBinaryAttributes struct { Srcs bazel.LabelListAttribute Filename string Sub_dir string // Bazel also supports the attributes below, but (so far) these are not required for Bionic // deps // data Loading Loading @@ -547,12 +549,25 @@ func ShBinaryBp2Build(ctx android.TopDownMutatorContext) { srcs := bazel.MakeLabelListAttribute( android.BazelLabelForModuleSrc(ctx, []string{*m.properties.Src})) var filename string if m.properties.Filename != nil { filename = *m.properties.Filename } var subDir string if m.properties.Sub_dir != nil { subDir = *m.properties.Sub_dir } attrs := &bazelShBinaryAttributes{ Srcs: srcs, Filename: filename, Sub_dir: subDir, } props := bazel.BazelTargetModuleProperties{ Rule_class: "sh_binary", Bzl_load_location: "//build/bazel/rules:sh_binary.bzl", } ctx.CreateBazelTargetModule(props, android.CommonAttributes{Name: m.Name()}, attrs) Loading Loading
bp2build/sh_conversion_test.go +5 −1 Original line number Diff line number Diff line Loading @@ -62,11 +62,15 @@ func TestShBinarySimple(t *testing.T) { blueprint: `sh_binary { name: "foo", src: "foo.sh", filename: "foo.exe", sub_dir: "sub", bazel_module: { bp2build_available: true }, }`, expectedBazelTargets: []string{ makeBazelTarget("sh_binary", "foo", attrNameToString{ "srcs": `["foo.sh"]`, "filename": `"foo.exe"`, "sub_dir": `"sub"`, })}, }) }
sh/sh_binary.go +18 −3 Original line number Diff line number Diff line Loading @@ -517,6 +517,8 @@ func ShTestHostFactory() android.Module { type bazelShBinaryAttributes struct { Srcs bazel.LabelListAttribute Filename string Sub_dir string // Bazel also supports the attributes below, but (so far) these are not required for Bionic // deps // data Loading Loading @@ -547,12 +549,25 @@ func ShBinaryBp2Build(ctx android.TopDownMutatorContext) { srcs := bazel.MakeLabelListAttribute( android.BazelLabelForModuleSrc(ctx, []string{*m.properties.Src})) var filename string if m.properties.Filename != nil { filename = *m.properties.Filename } var subDir string if m.properties.Sub_dir != nil { subDir = *m.properties.Sub_dir } attrs := &bazelShBinaryAttributes{ Srcs: srcs, Filename: filename, Sub_dir: subDir, } props := bazel.BazelTargetModuleProperties{ Rule_class: "sh_binary", Bzl_load_location: "//build/bazel/rules:sh_binary.bzl", } ctx.CreateBazelTargetModule(props, android.CommonAttributes{Name: m.Name()}, attrs) Loading