Home | History | Annotate | Download | only in gypfiles

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:]
127 if running_as_hook in args and gyp_chromium_no_action != '0':
134 if running_as_hook in args:
135 args.remove(running_as_hook)
142 for arg in args:
154 args.extend(shlex.split(gyp_file))
156 args.append(os.path.join(script_dir, 'all.gyp'))
158 args.extend(['-I' + i for i in additional_include_files(args)])
161 args.append('--no-circular-check')
164 args.append('--depth=' + os.path.relpath(v8_root))
170 args.append('--check')
176 gyp_args = list(args)