Home | History | Annotate | Download | only in base

Lines Matching refs:infile

287 for infile in input_files:
288 if env.compilable(infile):
289 if (type(infile) == type('')
290 and (infile.startswith('$SRC_DIR/base/')
291 or not os.path.isabs(env.subst(infile)))):
294 base, ext = os.path.splitext(os.path.normpath(infile))
298 if not infile.startswith('$SRC_DIR/base/'):
299 infile = '$SRC_DIR/base/' + infile
300 infile = env.StaticObject(object, infile)[0]
302 infile = env.StaticObject(infile)[0]
303 _result.append(infile)