Home
last modified time | relevance | path

Searched refs:commonProperties (Results 1 – 18 of 18) sorted by relevance

/build/soong/android/
Dmodule.go282 type commonProperties struct { struct
726 &base.commonProperties,
733 setPrimaryVisibilityProperty(m, "visibility", &base.commonProperties.Visibility)
737 setPrimaryLicensesProperty(m, "licenses", &base.commonProperties.Licenses)
750 base.commonProperties.HostOrDeviceSupported = hod
751 base.commonProperties.Default_multilib = string(defaultMultilib)
752 base.commonProperties.ArchSpecific = true
753 base.commonProperties.UseTargetVariants = true
773 m.base().commonProperties.UseTargetVariants = false
788 m.base().commonProperties.UseTargetVariants = false
[all …]
Dlicense.go72 mergeStringProps(&m.base().commonProperties.Effective_licenses, ctx.ModuleName())
73 …namePathProps(&m.base().commonProperties.Effective_license_text, m.properties.Package_name, PathsF…
76 …mergeStringProps(&m.base().commonProperties.Effective_license_conditions, lk.properties.Conditions…
77 mergeStringProps(&m.base().commonProperties.Effective_license_kinds, ctx.OtherModuleName(module))
Dlicenses.go212 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 …mergeNamedPathProps(&m.base().commonProperties.Effective_license_text, module.base().commonPropert…
217 …mergeStringProps(&m.base().commonProperties.Effective_license_kinds, module.base().commonPropertie…
218 …mergeStringProps(&m.base().commonProperties.Effective_license_conditions, module.base().commonProp…
Dmutator.go601 base.commonProperties.DebugMutators = append(base.commonProperties.DebugMutators, a.name)
602 base.commonProperties.DebugVariations = append(base.commonProperties.DebugVariations, variation)
707 t.Module().base().commonProperties.DebugName = name
729 b.Module().base().commonProperties.DebugName = name
757 base.commonProperties.DebugMutators = append(base.commonProperties.DebugMutators, b.MutatorName())
758 …base.commonProperties.DebugVariations = append(base.commonProperties.DebugVariations, variations[i…
775 base.commonProperties.DebugMutators = append(base.commonProperties.DebugMutators, b.MutatorName())
776 …base.commonProperties.DebugVariations = append(base.commonProperties.DebugVariations, variations[i…
Ddefaults.go175 commonProperties := &commonProperties{}
179 commonProperties,
204 AddVisibilityProperty(module, "visibility", &commonProperties.Visibility)
207 setPrimaryLicensesProperty(module, "licenses", &commonProperties.Licenses)
Dlicense_sdk_member.go93 p.License_text = make(Paths, 0, len(l.base().commonProperties.Effective_license_text))
94 for _, np := range l.base().commonProperties.Effective_license_text {
Dlicense_metadata.go126 if p := base.commonProperties.Effective_package_name; p != nil {
132 …JoinWithPrefix(proptools.NinjaAndShellEscapeListIncludingSpaces(base.commonProperties.Effective_li…
135 …JoinWithPrefix(proptools.NinjaAndShellEscapeListIncludingSpaces(base.commonProperties.Effective_li…
138 …JoinWithPrefix(proptools.NinjaAndShellEscapeListIncludingSpaces(base.commonProperties.Effective_li…
Dlicenses_test.go521 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
Darch.go445 createCommonOSVariant := base.commonProperties.CreateCommonOSVariant
474 m.base().commonProperties.CompileOS = moduleOSList[i]
483 commonOSVariant.base().commonProperties.CommonOSVariant = true
579 os := base.commonProperties.CompileOS
590 image := base.commonProperties.ImageVariation
669 m.base().commonProperties.SkipInstall = true
688 m.base().commonProperties.CompileTarget = target
689 m.base().commonProperties.CompileMultiTargets = multiTargets
690 m.base().commonProperties.CompilePrimary = primaryTarget
691 m.base().commonProperties.ArchReady = true
[all …]
Dandroidmk.go549 …a.SetBoolIfTrue("LOCAL_UNINSTALLABLE_MODULE", proptools.Bool(base.commonProperties.No_full_install…
595 a.SetBoolIfTrue("LOCAL_PROPRIETARY_MODULE", Bool(base.commonProperties.Proprietary))
596 if Bool(base.commonProperties.Vendor) || Bool(base.commonProperties.Soc_specific) {
599 a.SetBoolIfTrue("LOCAL_ODM_MODULE", Bool(base.commonProperties.Device_specific))
600 a.SetBoolIfTrue("LOCAL_PRODUCT_MODULE", Bool(base.commonProperties.Product_specific))
601 a.SetBoolIfTrue("LOCAL_SYSTEM_EXT_MODULE", Bool(base.commonProperties.System_ext_specific))
602 if base.commonProperties.Owner != nil {
603 a.SetString("LOCAL_MODULE_OWNER", *base.commonProperties.Owner)
975 if !module.commonProperties.NamespaceExportedToMake {
994 module.commonProperties.HideFromMake ||
Dmodule_context.go365 missingDeps = append(missingDeps, m.Module().base().commonProperties.MissingDeps...)
381 return m.module.base().commonProperties.SoongConfigTraceHash
433 if m.module.base().commonProperties.SkipInstall {
437 if m.module.base().commonProperties.HideFromMake {
444 if !m.module.base().commonProperties.NamespaceExportedToMake {
459 if proptools.Bool(m.module.base().commonProperties.No_full_install) {
Dbase_module_context.go283 missingDeps := &b.Module().base().commonProperties.MissingDeps
290 return b.Module().base().commonProperties.CheckedMissingDeps
294 checked := &b.Module().base().commonProperties.CheckedMissingDeps
297 missingDeps = append(missingDeps, b.Module().base().commonProperties.MissingDeps...)
Dhooks.go102 inherited := []interface{}{&ctx.Module().base().commonProperties}
Dnamespace.go221 amod.base().commonProperties.NamespaceExportedToMake = ns.exportToKati
222 amod.base().commonProperties.DebugName = module.Name()
Dsoong_config_modules.go574 module.(Module).base().commonProperties.SoongConfigTrace = tracingConfig.getTrace()
Dtesting.go494 amMut := am.base().commonProperties.DebugMutators
495 amVar := am.base().commonProperties.DebugVariations
/build/soong/apex/
Dandroidmk.go264 commonProperties := []string{
269 for _, name := range commonProperties {
/build/soong/sdk/
Dupdate.go738 …perties(ctx android.ModuleContext, extractor *commonValueExtractor, commonProperties interface{}, …
739 err := extractor.extractCommonProperties(commonProperties, inputPropertiesSlice)
2020 commonProperties := variantPropertiesFactory()
2021 commonProperties.Base().Os = android.CommonOS
2026 unsupportedPropertyPruner := newPropertyPrunerByBuildRelease(commonProperties, targetBuildRelease)
2029 commonValueExtractor := newCommonValueExtractor(commonProperties)
2049 …extractCommonProperties(moduleCtx, commonValueExtractor, commonProperties, osSpecificPropertiesCon…
2052 addSdkMemberPropertiesToSet(ctx, commonProperties, bpModule)
2285 func (e *commonValueExtractor) extractCommonProperties(commonProperties interface{}, inputPropertie…
2286 commonPropertiesValue := reflect.ValueOf(commonProperties)