Lines Matching refs:options
35 options, _ = parser.parse_args(args)
36 return options
54 def fix_para_file(options): argument
58 with open(options.source_file, 'r') as f:
67 if options.extra:
68 parse_extra_params(options.extra, contents)
72 with os.fdopen(os.open(options.output, flags, modes), 'w') as f:
77 options = parse_args(args)
79 depfile_deps = ([options.source_file])
81 fix_para_file(options)
82 build_utils.write_depfile(options.depfile,
83 options.output, depfile_deps, add_pydeps=False)