Home | History | Annotate | Download | only in base

Lines Matching refs:infile

282 for infile in input_files:
283 if env.compilable(infile):
284 if (type(infile) == type('')
285 and (infile.startswith('$SRC_DIR/base/')
286 or not os.path.isabs(env.subst(infile)))):
289 base, ext = os.path.splitext(os.path.normpath(infile))
293 if not infile.startswith('$SRC_DIR/base/'):
294 infile = '$SRC_DIR/base/' + infile
295 infile = env.StaticObject(object, infile)[0]
297 infile = env.StaticObject(infile)[0]
298 _result.append(infile)