Searched refs:commonProperties (Results 1 – 14 of 14) sorted by relevance
/aosp12/build/soong/android/ |
H A D | module.go | 635 type commonProperties struct { struct 1017 &base.commonProperties, 1134 commonProperties commonProperties member 1328 return m.commonProperties.ArchSpecific 1395 …return Bool(m.commonProperties.Vendor) || Bool(m.commonProperties.Proprietary) || Bool(m.commonPro… 1448 if m.commonProperties.ForcedDisabled { 1454 return *m.commonProperties.Enabled 1473 m.commonProperties.SkipInstall = true 1479 return m.commonProperties.SkipInstall 1683 …var socSpecific = Bool(m.commonProperties.Vendor) || Bool(m.commonProperties.Proprietary) || Bool(… [all …]
|
H A D | licenses.go | 212 if m.base().commonProperties.Effective_package_name == nil && l.properties.Package_name != nil { 213 m.base().commonProperties.Effective_package_name = l.properties.Package_name 215 …mergeStringProps(&m.base().commonProperties.Effective_licenses, module.base().commonProperties.Eff… 216 …mergePathProps(&m.base().commonProperties.Effective_license_text, module.base().commonProperties.E… 217 …mergeStringProps(&m.base().commonProperties.Effective_license_kinds, module.base().commonPropertie… 218 …mergeStringProps(&m.base().commonProperties.Effective_license_conditions, module.base().commonProp…
|
H A D | androidmk.go | 489 a.Required = append(a.Required, amod.commonProperties.Required...) 490 a.Host_required = append(a.Host_required, amod.commonProperties.Host_required...) 502 a.AddStrings("LOCAL_LICENSE_KINDS", amod.commonProperties.Effective_license_kinds...) 506 if amod.commonProperties.Effective_package_name != nil { 508 } else if len(amod.commonProperties.Effective_licenses) > 0 { 557 if Bool(amod.commonProperties.Vendor) || Bool(amod.commonProperties.Soc_specific) { 560 a.SetBoolIfTrue("LOCAL_ODM_MODULE", Bool(amod.commonProperties.Device_specific)) 563 if amod.commonProperties.Owner != nil { 564 a.SetString("LOCAL_MODULE_OWNER", *amod.commonProperties.Owner) 898 if !module.commonProperties.NamespaceExportedToMake { [all …]
|
H A D | license.go | 65 mergeStringProps(&m.base().commonProperties.Effective_licenses, ctx.ModuleName()) 66 …mergePathProps(&m.base().commonProperties.Effective_license_text, PathsForModuleSrc(ctx, m.propert… 69 …mergeStringProps(&m.base().commonProperties.Effective_license_conditions, lk.properties.Conditions… 70 mergeStringProps(&m.base().commonProperties.Effective_license_kinds, ctx.OtherModuleName(module))
|
H A D | mutator.go | 588 t.Module().base().commonProperties.DebugName = name 592 inherited := []interface{}{&t.Module().base().commonProperties} 623 b.Module().base().commonProperties.DebugName = name 645 base.commonProperties.DebugMutators = append(base.commonProperties.DebugMutators, b.MutatorName()) 646 …base.commonProperties.DebugVariations = append(base.commonProperties.DebugVariations, variations[i… 663 base.commonProperties.DebugMutators = append(base.commonProperties.DebugMutators, b.MutatorName()) 664 …base.commonProperties.DebugVariations = append(base.commonProperties.DebugVariations, variations[i…
|
H A D | defaults.go | 176 commonProperties := &commonProperties{} 180 commonProperties, 205 AddVisibilityProperty(module, "visibility", &commonProperties.Visibility) 208 setPrimaryLicensesProperty(module, "licenses", &commonProperties.Licenses)
|
H A D | licenses_test.go | 521 actualLicenses[m.Name()] = base.commonProperties.Effective_licenses 557 for _, l := range base.commonProperties.Effective_licenses { 579 for _, l := range cbase.commonProperties.Effective_licenses { 622 if base.commonProperties.Effective_package_name == nil { 625 actualPackage[m.Name()] = *base.commonProperties.Effective_package_name 661 actualNotices[m.Name()] = base.commonProperties.Effective_license_text.Strings() 696 actualKinds[m.Name()] = base.commonProperties.Effective_license_kinds 731 actualConditions[m.Name()] = base.commonProperties.Effective_license_conditions
|
H A D | arch.go | 541 m.base().commonProperties.CompileOS = moduleOSList[i] 640 os := base.commonProperties.CompileOS 651 image := base.commonProperties.ImageVariation 727 m.base().commonProperties.CompileTarget = target 729 m.base().commonProperties.CompilePrimary = primaryTarget 747 multilib = String(base.commonProperties.Compile_multilib) 752 multilib = base.commonProperties.Default_multilib 755 if base.commonProperties.UseTargetVariants { 760 if multilib == base.commonProperties.Default_multilib { 763 return base.commonProperties.Default_multilib, multilib [all …]
|
H A D | license_sdk_member.go | 93 p.License_text = l.base().commonProperties.Effective_license_text
|
H A D | namespace.go | 197 amod.base().commonProperties.NamespaceExportedToMake = ns.exportToKati 198 amod.base().commonProperties.DebugName = module.Name()
|
H A D | hooks.go | 97 inherited := []interface{}{&l.Module().base().commonProperties}
|
/aosp12/system/tools/aidl/build/ |
H A D | aidl_interface_backends.go | 63 var commonProperties *CommonNativeBackendProperties 65 commonProperties = &i.properties.Backend.Cpp.CommonNativeBackendProperties 67 commonProperties = &i.properties.Backend.Ndk.CommonNativeBackendProperties 70 genLog := proptools.Bool(commonProperties.Gen_log) 186 Apex_available: commonProperties.Apex_available, 206 &commonProperties.VndkProperties,
|
/aosp12/build/soong/apex/ |
H A D | androidmk.go | 282 commonProperties := []string{ 285 for _, name := range commonProperties { 392 commonProperties := []string{ 397 for _, name := range commonProperties {
|
/aosp12/build/soong/sdk/ |
H A D | update.go | 598 …perties(ctx android.ModuleContext, extractor *commonValueExtractor, commonProperties interface{}, … 599 err := extractor.extractCommonProperties(commonProperties, inputPropertiesSlice) 1592 commonProperties := variantPropertiesFactory() 1593 commonProperties.Base().Os = android.CommonOS 1596 commonValueExtractor := newCommonValueExtractor(commonProperties) 1614 …extractCommonProperties(ctx.sdkMemberContext, commonValueExtractor, commonProperties, osSpecificPr… 1617 addSdkMemberPropertiesToSet(ctx, commonProperties, bpModule) 1856 func (e *commonValueExtractor) extractCommonProperties(commonProperties interface{}, inputPropertie… 1857 commonPropertiesValue := reflect.ValueOf(commonProperties)
|