diff --git a/android/sh_binary.go b/android/sh_binary.go index eaedc9fde..52c5a9a33 100644 --- a/android/sh_binary.go +++ b/android/sh_binary.go @@ -123,6 +123,8 @@ func InitShBinaryModule(s *ShBinary) { s.AddProperties(&s.properties) } +// sh_binary is for a shell script or batch file to be installed as an +// executable binary to /bin. func ShBinaryFactory() Module { module := &ShBinary{} InitShBinaryModule(module) @@ -130,6 +132,8 @@ func ShBinaryFactory() Module { return module } +// sh_binary_host is for a shell script to be installed as an executable binary +// to $(HOST_OUT)/bin. func ShBinaryHostFactory() Module { module := &ShBinary{} InitShBinaryModule(module)