Merge "Switch Effective_license_text from []string to Paths" am: fffd98fd16
Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1702369 Change-Id: I26fc1c416cad8025f236cc49dbd4c001f4a1862a
This commit is contained in:
commit
814d3fffaa
|
@ -501,7 +501,7 @@ func (a *AndroidMkEntries) fillInEntries(ctx fillInEntriesContext, mod blueprint
|
|||
a.SetString("LOCAL_MODULE", name+a.SubName)
|
||||
a.AddStrings("LOCAL_LICENSE_KINDS", amod.commonProperties.Effective_license_kinds...)
|
||||
a.AddStrings("LOCAL_LICENSE_CONDITIONS", amod.commonProperties.Effective_license_conditions...)
|
||||
a.AddStrings("LOCAL_NOTICE_FILE", amod.commonProperties.Effective_license_text...)
|
||||
a.AddStrings("LOCAL_NOTICE_FILE", amod.commonProperties.Effective_license_text.Strings()...)
|
||||
// TODO(b/151177513): Does this code need to set LOCAL_MODULE_IS_CONTAINER ?
|
||||
if amod.commonProperties.Effective_package_name != nil {
|
||||
a.SetString("LOCAL_LICENSE_PACKAGE_NAME", *amod.commonProperties.Effective_package_name)
|
||||
|
|
|
@ -62,12 +62,12 @@ func (m *licenseModule) DepsMutator(ctx BottomUpMutatorContext) {
|
|||
|
||||
func (m *licenseModule) GenerateAndroidBuildActions(ctx ModuleContext) {
|
||||
// license modules have no licenses, but license_kinds must refer to license_kind modules
|
||||
mergeProps(&m.base().commonProperties.Effective_licenses, ctx.ModuleName())
|
||||
mergeProps(&m.base().commonProperties.Effective_license_text, PathsForModuleSrc(ctx, m.properties.License_text).Strings()...)
|
||||
mergeStringProps(&m.base().commonProperties.Effective_licenses, ctx.ModuleName())
|
||||
mergePathProps(&m.base().commonProperties.Effective_license_text, PathsForModuleSrc(ctx, m.properties.License_text)...)
|
||||
for _, module := range ctx.GetDirectDepsWithTag(licenseKindTag) {
|
||||
if lk, ok := module.(*licenseKindModule); ok {
|
||||
mergeProps(&m.base().commonProperties.Effective_license_conditions, lk.properties.Conditions...)
|
||||
mergeProps(&m.base().commonProperties.Effective_license_kinds, ctx.OtherModuleName(module))
|
||||
mergeStringProps(&m.base().commonProperties.Effective_license_conditions, lk.properties.Conditions...)
|
||||
mergeStringProps(&m.base().commonProperties.Effective_license_kinds, ctx.OtherModuleName(module))
|
||||
} else {
|
||||
ctx.ModuleErrorf("license_kinds property %q is not a license_kind module", ctx.OtherModuleName(module))
|
||||
}
|
||||
|
|
|
@ -196,10 +196,10 @@ func licensesPropertyFlattener(ctx ModuleContext) {
|
|||
if m.base().commonProperties.Effective_package_name == nil && l.properties.Package_name != nil {
|
||||
m.base().commonProperties.Effective_package_name = l.properties.Package_name
|
||||
}
|
||||
mergeProps(&m.base().commonProperties.Effective_licenses, module.base().commonProperties.Effective_licenses...)
|
||||
mergeProps(&m.base().commonProperties.Effective_license_text, module.base().commonProperties.Effective_license_text...)
|
||||
mergeProps(&m.base().commonProperties.Effective_license_kinds, module.base().commonProperties.Effective_license_kinds...)
|
||||
mergeProps(&m.base().commonProperties.Effective_license_conditions, module.base().commonProperties.Effective_license_conditions...)
|
||||
mergeStringProps(&m.base().commonProperties.Effective_licenses, module.base().commonProperties.Effective_licenses...)
|
||||
mergePathProps(&m.base().commonProperties.Effective_license_text, module.base().commonProperties.Effective_license_text...)
|
||||
mergeStringProps(&m.base().commonProperties.Effective_license_kinds, module.base().commonProperties.Effective_license_kinds...)
|
||||
mergeStringProps(&m.base().commonProperties.Effective_license_conditions, module.base().commonProperties.Effective_license_conditions...)
|
||||
} else {
|
||||
propertyName := "licenses"
|
||||
primaryProperty := m.base().primaryLicensesProperty
|
||||
|
@ -212,16 +212,15 @@ func licensesPropertyFlattener(ctx ModuleContext) {
|
|||
}
|
||||
|
||||
// Update a property string array with a distinct union of its values and a list of new values.
|
||||
func mergeProps(prop *[]string, values ...string) {
|
||||
s := make(map[string]bool)
|
||||
for _, v := range *prop {
|
||||
s[v] = true
|
||||
}
|
||||
for _, v := range values {
|
||||
s[v] = true
|
||||
}
|
||||
*prop = []string{}
|
||||
*prop = append(*prop, SortedStringKeys(s)...)
|
||||
func mergeStringProps(prop *[]string, values ...string) {
|
||||
*prop = append(*prop, values...)
|
||||
*prop = SortedUniqueStrings(*prop)
|
||||
}
|
||||
|
||||
// Update a property Path array with a distinct union of its values and a list of new values.
|
||||
func mergePathProps(prop *Paths, values ...Path) {
|
||||
*prop = append(*prop, values...)
|
||||
*prop = SortedUniquePaths(*prop)
|
||||
}
|
||||
|
||||
// Get the licenses property falling back to the package default.
|
||||
|
|
|
@ -658,7 +658,7 @@ func checkEffectiveNotices(t *testing.T, result *TestResult, effectiveNotices ma
|
|||
if base == nil {
|
||||
return
|
||||
}
|
||||
actualNotices[m.Name()] = base.commonProperties.Effective_license_text
|
||||
actualNotices[m.Name()] = base.commonProperties.Effective_license_text.Strings()
|
||||
})
|
||||
|
||||
for moduleName, expectedNotices := range effectiveNotices {
|
||||
|
|
|
@ -688,7 +688,7 @@ type commonProperties struct {
|
|||
// Override of module name when reporting licenses
|
||||
Effective_package_name *string `blueprint:"mutated"`
|
||||
// Notice files
|
||||
Effective_license_text []string `blueprint:"mutated"`
|
||||
Effective_license_text Paths `blueprint:"mutated"`
|
||||
// License names
|
||||
Effective_license_kinds []string `blueprint:"mutated"`
|
||||
// License conditions
|
||||
|
|
Loading…
Reference in New Issue