OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import fileinput | 5 import fileinput |
6 import glob | 6 import glob |
7 import optparse | 7 import optparse |
8 import os | 8 import os |
9 import shlex | 9 import shlex |
10 import sys | 10 import sys |
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
227 | 227 |
228 AggregateVectorIcons(options.working_directory, | 228 AggregateVectorIcons(options.working_directory, |
229 options.file_list, | 229 options.file_list, |
230 options.output_cc, | 230 options.output_cc, |
231 options.output_h, | 231 options.output_h, |
232 options.use_legacy_template) | 232 options.use_legacy_template) |
233 | 233 |
234 | 234 |
235 if __name__ == "__main__": | 235 if __name__ == "__main__": |
236 main() | 236 main() |
OLD | NEW |