Home | History | Annotate | Download | only in build

Lines Matching defs:args

73 def additional_include_files(args=[]):
83 for arg in args:
103 def run_gyp(args):
104 rc = gyp.main(args)
119 args = sys.argv[1:]
126 for arg in args:
138 args.extend(shlex.split(gyp_file))
140 args.append(os.path.join(script_dir, 'all.gyp'))
142 args.extend(['-I' + i for i in additional_include_files(args)])
145 args.append('--no-circular-check')
148 args.append('--depth=' + os.path.relpath(v8_root))
154 args.append('--check')
160 gyp_args = list(args)