Lines Matching refs:p
123 func (p *nativeBinaryInfoProperties) PopulateFromVariant(ctx android.SdkMemberContext, variant andr…
126 p.archType = ccModule.Target().Arch.ArchType.String()
127 p.outputFile = getRequiredMemberOutputFile(ctx, ccModule)
130 p.StaticExecutable = binaryLinker.static()
131 p.Nocrt = Bool(binaryLinker.baseLinker.Properties.Nocrt)
137 p.SharedLibs = specifiedDeps.sharedLibs
138 p.SystemSharedLibs = specifiedDeps.systemSharedLibs
142 func (p *nativeBinaryInfoProperties) AddToPropertySet(ctx android.SdkMemberContext, propertySet and…
144 if p.outputFile != nil {
145 propertySet.AddProperty("srcs", []string{nativeBinaryPathFor(*p)})
147 builder.CopyToSnapshot(p.outputFile, nativeBinaryPathFor(*p))
150 if len(p.SharedLibs) > 0 {
151 …propertySet.AddPropertyWithTag("shared_libs", p.SharedLibs, builder.SdkMemberReferencePropertyTag(…
156 if p.SystemSharedLibs != nil {
157 …propertySet.AddPropertyWithTag("system_shared_libs", p.SystemSharedLibs, builder.SdkMemberReferenc…
160 if p.StaticExecutable {
161 propertySet.AddProperty("static_executable", p.StaticExecutable)
163 if p.Nocrt {
164 propertySet.AddProperty("nocrt", p.Nocrt)