Lines Matching refs:srcFile
189 func genWinMsg(ctx android.ModuleContext, srcFile android.Path, flags builderFlags) (android.Path, …
190 headerFile := android.GenPathWithExt(ctx, "windmc", srcFile, "h")
191 rcFile := android.GenPathWithExt(ctx, "windmc", srcFile, "rc")
197 Description: "windmc " + srcFile.Rel(),
200 Input: srcFile,
225 for i, srcFile := range srcFiles {
226 switch srcFile.Ext() {
228 cFile := android.GenPathWithExt(ctx, "yacc", srcFile, "c")
230 deps = append(deps, genYacc(ctx, yaccRule(), srcFile, cFile, buildFlags.yacc)...)
232 cppFile := android.GenPathWithExt(ctx, "yacc", srcFile, "cpp")
234 deps = append(deps, genYacc(ctx, yaccRule(), srcFile, cppFile, buildFlags.yacc)...)
236 cFile := android.GenPathWithExt(ctx, "lex", srcFile, "c")
238 genLex(ctx, srcFile, cFile)
240 cppFile := android.GenPathWithExt(ctx, "lex", srcFile, "cpp")
242 genLex(ctx, srcFile, cppFile)
244 ccFile, headerFile := genProto(ctx, srcFile, buildFlags)
251 cppFile := android.GenPathWithExt(ctx, "aidl", srcFile, "cpp")
252 depFile := android.GenPathWithExt(ctx, "aidl", srcFile, "cpp.d")
254 deps = append(deps, genAidl(ctx, aidlRule, srcFile, cppFile, depFile, buildFlags.aidlFlags)...)
256 cppFile := rsGeneratedCppFile(ctx, srcFile)
260 rcFile, headerFile := genWinMsg(ctx, srcFile, buildFlags)
264 cppFile, headerFiles := genSysprop(ctx, srcFile)