Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(30)

Side by Side Diff: ui/vector_icons/aggregate_vector_icons.py

Issue 2733823003: Move final vector icons out of ui/gfx/vector_icons/ and remove the (Closed)
Patch Set: fix cast shell maybe Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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()
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698