Lines Matching refs:properties
83 properties hidlGenProperties member
96 for _, input := range g.properties.Inputs {
100 for _, output := range g.properties.Outputs {
104 if g.properties.Language == "vts" && isVtsSpecPackage(ctx.ModuleName()) {
116 fullRootOptions = append(fullRootOptions, t.properties.Full_root_option)
136 if g.properties.Language == "java" {
148 "fqName": g.properties.FqName,
149 "language": g.properties.Language,
172 ctx.AddDependency(ctx.Module(), nil, g.properties.FqName+hidlInterfaceSuffix)
173 ctx.AddDependency(ctx.Module(), nil, wrap("", g.properties.Interfaces, hidlInterfaceSuffix)...)
174 ctx.AddDependency(ctx.Module(), nil, g.properties.Root)
179 g.AddProperties(&g.properties)
195 properties vtscProperties member
216 for _, output := range g.properties.Outputs {
225 "mode": g.properties.Mode,
226 "type": g.properties.Type,
229 "packagePath": g.properties.PackagePath,
251 ctx.AddDependency(ctx.Module(), nil, g.properties.SpecName)
256 g.AddProperties(&g.properties)
329 properties hidlInterfaceProperties member
397 if !name.inPackage(i.properties.Root) {
398 mctx.PropertyErrorf("root", i.properties.Root+" must be a prefix of "+name.string()+".")
400 if lookupPackageRoot(i.properties.Root) == nil {
412 i.properties.Root, name, i.properties.Root, i.properties.Root)
415 interfaces, types, _ := processSources(mctx, i.properties.Srcs)
421 dependencies, javaDependencies, _ := processDependencies(mctx, i.properties.Interfaces)
430 shouldGenerateJava := proptools.BoolDefault(i.properties.Gen_java, true)
431 shouldGenerateJavaConstants := i.properties.Gen_java_constants
432 shouldGenerateVts := shouldGenerateLibrary && proptools.BoolDefault(i.properties.Gen_vts, true)
442 Srcs: i.properties.Srcs,
450 Root: i.properties.Root,
451 Interfaces: i.properties.Interfaces,
452 Inputs: i.properties.Srcs,
460 Root: i.properties.Root,
461 Interfaces: i.properties.Interfaces,
462 Inputs: i.properties.Srcs,
496 }, &i.properties.VndkProperties, &i.inheritCommonProperties)
505 Root: i.properties.Root,
506 Interfaces: i.properties.Interfaces,
507 Inputs: i.properties.Srcs,
541 Root: i.properties.Root,
542 Interfaces: i.properties.Interfaces,
543 Inputs: i.properties.Srcs,
559 Root: i.properties.Root,
560 Interfaces: i.properties.Interfaces,
561 Inputs: i.properties.Srcs,
569 Root: i.properties.Root,
570 Interfaces: i.properties.Interfaces,
571 Inputs: i.properties.Srcs,
608 Root: i.properties.Root,
609 Interfaces: i.properties.Interfaces,
610 Inputs: i.properties.Srcs,
640 Root: i.properties.Root,
641 Interfaces: i.properties.Interfaces,
642 Inputs: i.properties.Srcs,
722 h.properties.Full_root_option = dep.(*hidlPackageRoot).getFullPackageRoot()
730 ctx.AddDependency(ctx.Module(), nil, h.properties.Root)
735 i.AddProperties(&i.properties)