Lines Matching refs:srcFile
203 func genWinMsg(ctx android.ModuleContext, srcFile android.Path, flags builderFlags) (android.Path, …
204 headerFile := android.GenPathWithExt(ctx, "windmc", srcFile, "h")
205 rcFile := android.GenPathWithExt(ctx, "windmc", srcFile, "rc")
211 Description: "windmc " + srcFile.Rel(),
214 Input: srcFile,
267 for i, srcFile := range srcFiles {
268 switch srcFile.Ext() {
270 cFile := android.GenPathWithExt(ctx, "yacc", srcFile, "c")
272 deps = append(deps, genYacc(ctx, yaccRule(), srcFile, cFile, buildFlags.yacc)...)
274 cppFile := android.GenPathWithExt(ctx, "yacc", srcFile, "cpp")
276 deps = append(deps, genYacc(ctx, yaccRule(), srcFile, cppFile, buildFlags.yacc)...)
278 cFile := android.GenPathWithExt(ctx, "lex", srcFile, "c")
280 genLex(ctx, srcFile, cFile, buildFlags.lex)
282 cppFile := android.GenPathWithExt(ctx, "lex", srcFile, "cpp")
284 genLex(ctx, srcFile, cppFile, buildFlags.lex)
286 ccFile, headerFile := genProto(ctx, srcFile, buildFlags)
296 cppFile, aidlHeaders := genAidl(ctx, aidlRule, srcFile, buildFlags.aidlFlags)
305 cppFile := rsGeneratedCppFile(ctx, srcFile)
309 rcFile, headerFile := genWinMsg(ctx, srcFile, buildFlags)
313 cppFile, headerFiles := genSysprop(ctx, srcFile)