Lines Matching refs:g
76 func (g *syspropJavaGenRule) GenerateAndroidBuildActions(ctx android.ModuleContext) {
85 for _, syspropFile := range android.PathsForModuleSrc(ctx, g.properties.Srcs) {
95 "scope": g.properties.Scope,
99 g.genSrcjars = append(g.genSrcjars, srcJarFile)
103 func (g *syspropJavaGenRule) DepsMutator(ctx android.BottomUpMutatorContext) {
106 ctx.AddFarVariationDependencies(nil, nil, proptools.String(g.properties.Check_api))
109 func (g *syspropJavaGenRule) OutputFiles(tag string) (android.Paths, error) {
112 return g.genSrcjars, nil
119 g := &syspropJavaGenRule{}
120 g.AddProperties(&g.properties)
121 android.InitAndroidModule(g)
122 return g