Loading android/androidmk.go +3 −0 Original line number Diff line number Diff line Loading @@ -227,6 +227,9 @@ func translateAndroidMkModule(ctx SingletonContext, w io.Writer, mod blueprint.M if len(amod.commonProperties.Init_rc) > 0 { fmt.Fprintln(&data.preamble, "LOCAL_INIT_RC := ", strings.Join(amod.commonProperties.Init_rc, " ")) } if len(amod.commonProperties.Vintf_fragments) > 0 { fmt.Fprintln(&data.preamble, "LOCAL_VINTF_FRAGMENTS := ", strings.Join(amod.commonProperties.Vintf_fragments, " ")) } if Bool(amod.commonProperties.Proprietary) { fmt.Fprintln(&data.preamble, "LOCAL_PROPRIETARY_MODULE := true") } Loading android/module.go +3 −0 Original line number Diff line number Diff line Loading @@ -242,6 +242,9 @@ type commonProperties struct { // init.rc files to be installed if this module is installed Init_rc []string // VINTF manifest fragments to be installed if this module is installed Vintf_fragments []string // names of other modules to install if this module is installed Required []string `android:"arch_variant"` Loading androidmk/cmd/androidmk/android.go +1 −0 Original line number Diff line number Diff line Loading @@ -121,6 +121,7 @@ func init() { "LOCAL_EXPORT_SHARED_LIBRARY_HEADERS": "export_shared_lib_headers", "LOCAL_EXPORT_STATIC_LIBRARY_HEADERS": "export_static_lib_headers", "LOCAL_INIT_RC": "init_rc", "LOCAL_VINTF_FRAGMENTS": "vintf_fragments", "LOCAL_TIDY_FLAGS": "tidy_flags", // TODO: This is comma-separated, not space-separated "LOCAL_TIDY_CHECKS": "tidy_checks", Loading Loading
android/androidmk.go +3 −0 Original line number Diff line number Diff line Loading @@ -227,6 +227,9 @@ func translateAndroidMkModule(ctx SingletonContext, w io.Writer, mod blueprint.M if len(amod.commonProperties.Init_rc) > 0 { fmt.Fprintln(&data.preamble, "LOCAL_INIT_RC := ", strings.Join(amod.commonProperties.Init_rc, " ")) } if len(amod.commonProperties.Vintf_fragments) > 0 { fmt.Fprintln(&data.preamble, "LOCAL_VINTF_FRAGMENTS := ", strings.Join(amod.commonProperties.Vintf_fragments, " ")) } if Bool(amod.commonProperties.Proprietary) { fmt.Fprintln(&data.preamble, "LOCAL_PROPRIETARY_MODULE := true") } Loading
android/module.go +3 −0 Original line number Diff line number Diff line Loading @@ -242,6 +242,9 @@ type commonProperties struct { // init.rc files to be installed if this module is installed Init_rc []string // VINTF manifest fragments to be installed if this module is installed Vintf_fragments []string // names of other modules to install if this module is installed Required []string `android:"arch_variant"` Loading
androidmk/cmd/androidmk/android.go +1 −0 Original line number Diff line number Diff line Loading @@ -121,6 +121,7 @@ func init() { "LOCAL_EXPORT_SHARED_LIBRARY_HEADERS": "export_shared_lib_headers", "LOCAL_EXPORT_STATIC_LIBRARY_HEADERS": "export_static_lib_headers", "LOCAL_INIT_RC": "init_rc", "LOCAL_VINTF_FRAGMENTS": "vintf_fragments", "LOCAL_TIDY_FLAGS": "tidy_flags", // TODO: This is comma-separated, not space-separated "LOCAL_TIDY_CHECKS": "tidy_checks", Loading