Implement host_required
and target_required
properties.
They are counterparts of LOCAL_HOST_REQUIRED_MODULES and LOCAL_TARGET_REQUIRED_MODULES respectively. Fixes: 128693436 Test: treehugger, convert cts/hostsidetests/devicepolicy/Android.bp Change-Id: Id66ffca6edffe18993ac51e8930f1d0e78178249
This commit is contained in:
@@ -38,13 +38,15 @@ type AndroidMkDataProvider interface {
|
||||
}
|
||||
|
||||
type AndroidMkData struct {
|
||||
Class string
|
||||
SubName string
|
||||
DistFile OptionalPath
|
||||
OutputFile OptionalPath
|
||||
Disabled bool
|
||||
Include string
|
||||
Required []string
|
||||
Class string
|
||||
SubName string
|
||||
DistFile OptionalPath
|
||||
OutputFile OptionalPath
|
||||
Disabled bool
|
||||
Include string
|
||||
Required []string
|
||||
Host_required []string
|
||||
Target_required []string
|
||||
|
||||
Custom func(w io.Writer, name, prefix, moduleDir string, data AndroidMkData)
|
||||
|
||||
@@ -200,6 +202,8 @@ func translateAndroidModule(ctx SingletonContext, w io.Writer, mod blueprint.Mod
|
||||
}
|
||||
|
||||
data.Required = append(data.Required, amod.commonProperties.Required...)
|
||||
data.Host_required = append(data.Host_required, amod.commonProperties.Host_required...)
|
||||
data.Target_required = append(data.Target_required, amod.commonProperties.Target_required...)
|
||||
|
||||
// Make does not understand LinuxBionic
|
||||
if amod.Os() == LinuxBionic {
|
||||
@@ -267,10 +271,7 @@ func translateAndroidModule(ctx SingletonContext, w io.Writer, mod blueprint.Mod
|
||||
fmt.Fprintln(&data.preamble, "LOCAL_MODULE :=", name+data.SubName)
|
||||
fmt.Fprintln(&data.preamble, "LOCAL_MODULE_CLASS :=", data.Class)
|
||||
fmt.Fprintln(&data.preamble, "LOCAL_PREBUILT_MODULE_FILE :=", data.OutputFile.String())
|
||||
|
||||
if len(data.Required) > 0 {
|
||||
fmt.Fprintln(&data.preamble, "LOCAL_REQUIRED_MODULES := "+strings.Join(data.Required, " "))
|
||||
}
|
||||
WriteRequiredModulesSettings(&data.preamble, data)
|
||||
|
||||
archStr := amod.Arch().ArchType.String()
|
||||
host := false
|
||||
@@ -360,3 +361,15 @@ func WriteAndroidMkData(w io.Writer, data AndroidMkData) {
|
||||
|
||||
fmt.Fprintln(w, "include "+data.Include)
|
||||
}
|
||||
|
||||
func WriteRequiredModulesSettings(w io.Writer, data AndroidMkData) {
|
||||
if len(data.Required) > 0 {
|
||||
fmt.Fprintln(w, "LOCAL_REQUIRED_MODULES :=", strings.Join(data.Required, " "))
|
||||
}
|
||||
if len(data.Host_required) > 0 {
|
||||
fmt.Fprintln(w, "LOCAL_HOST_REQUIRED_MODULES :=", strings.Join(data.Host_required, " "))
|
||||
}
|
||||
if len(data.Target_required) > 0 {
|
||||
fmt.Fprintln(w, "LOCAL_TARGET_REQUIRED_MODULES :=", strings.Join(data.Target_required, " "))
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user