Home | History | Annotate | Download | only in cc

Lines Matching refs:srcFile

110 func genWinMsg(ctx android.ModuleContext, srcFile android.Path, flags builderFlags) (android.Path, android.Path) {
111 headerFile := android.GenPathWithExt(ctx, "windmc", srcFile, "h")
112 rcFile := android.GenPathWithExt(ctx, "windmc", srcFile, "rc")
118 Description: "windmc " + srcFile.Rel(),
121 Input: srcFile,
137 for i, srcFile := range srcFiles {
138 switch srcFile.Ext() {
140 cFile := android.GenPathWithExt(ctx, "yacc", srcFile, "c")
142 deps = append(deps, genYacc(ctx, srcFile, cFile, buildFlags.yaccFlags))
144 cppFile := android.GenPathWithExt(ctx, "yacc", srcFile, "cpp")
146 deps = append(deps, genYacc(ctx, srcFile, cppFile, buildFlags.yaccFlags))
148 cFile := android.GenPathWithExt(ctx, "lex", srcFile, "c")
150 genLex(ctx, srcFile, cFile)
152 cppFile := android.GenPathWithExt(ctx, "lex", srcFile, "cpp")
154 genLex(ctx, srcFile, cppFile)
156 ccFile, headerFile := genProto(ctx, srcFile, buildFlags.protoFlags,
161 cppFile := android.GenPathWithExt(ctx, "aidl", srcFile, "cpp")
163 deps = append(deps, genAidl(ctx, srcFile, cppFile, buildFlags.aidlFlags)...)
165 cppFile := rsGeneratedCppFile(ctx, srcFile)
169 rcFile, headerFile := genWinMsg(ctx, srcFile, buildFlags)