Lines Matching refs:android
73 func genYacc(ctx android.ModuleContext, yaccFile android.Path, outFile android.ModuleGenPath, yaccF…
74 headerFile = android.GenPathWithExt(ctx, "yacc", yaccFile, "h")
76 ctx.Build(pctx, android.BuildParams{
91 func genAidl(ctx android.ModuleContext, aidlFile android.Path, outFile android.ModuleGenPath, aidlF…
92 ctx.Build(pctx, android.BuildParams{
99 "outDir": android.PathForModuleGen(ctx, "aidl").String(),
104 return android.Paths{outFile}
107 func genLex(ctx android.ModuleContext, lexFile android.Path, outFile android.ModuleGenPath) {
108 ctx.Build(pctx, android.BuildParams{
116 func genSysprop(ctx android.ModuleContext, syspropFile android.Path) (android.Path, android.Path) {
117 headerFile := android.PathForModuleGen(ctx, "sysprop", "include", syspropFile.Rel()+".h")
118 …systemHeaderFile := android.PathForModuleGen(ctx, "sysprop/system", "include", syspropFile.Rel()+"…
119 cppFile := android.PathForModuleGen(ctx, "sysprop", syspropFile.Rel()+".cpp")
121 ctx.Build(pctx, android.BuildParams{
138 func genWinMsg(ctx android.ModuleContext, srcFile android.Path, flags builderFlags) (android.Path, …
139 headerFile := android.GenPathWithExt(ctx, "windmc", srcFile, "h")
140 rcFile := android.GenPathWithExt(ctx, "windmc", srcFile, "rc")
144 ctx.Build(pctx, android.BuildParams{
158 func genSources(ctx android.ModuleContext, srcFiles android.Paths,
159 buildFlags builderFlags) (android.Paths, android.Paths) {
161 var deps android.Paths
163 var rsFiles android.Paths
168 cFile := android.GenPathWithExt(ctx, "yacc", srcFile, "c")
172 cppFile := android.GenPathWithExt(ctx, "yacc", srcFile, "cpp")
176 cFile := android.GenPathWithExt(ctx, "lex", srcFile, "c")
180 cppFile := android.GenPathWithExt(ctx, "lex", srcFile, "cpp")
188 cppFile := android.GenPathWithExt(ctx, "aidl", srcFile, "cpp")