Lines Matching refs:options
35 options, _ = parser.parse_args(args)
36 return options
39 def append_files(target_f, options): argument
41 with open(options.source_file, 'r') as source_f:
45 if options.files:
46 for append_f in options.files:
49 if options.lines:
50 for line in options.lines:
60 options = parse_args(args)
62 if options.files:
63 depfile_deps = ([options.source_file] + options.files)
65 depfile_deps = ([options.source_file])
67 …with os.fdopen(os.open(options.output, os.O_RDWR | os.O_CREAT, stat.S_IWUSR | stat.S_IRUSR), 'w') …
68 append_files(target_f, options)
70 build_utils.write_depfile(options.depfile,
71 options.output, depfile_deps, add_pydeps=False)