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

Side by Side Diff: Source/bindings/scripts/compute_interfaces_info.py

Issue 171373006: Rename compute_dependencies.py => compute_interfaces_info.py (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 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 | Annotate | Revision Log
OLDNEW
1 #!/usr/bin/python 1 #!/usr/bin/python
2 # 2 #
3 # Copyright (C) 2013 Google Inc. All rights reserved. 3 # Copyright (C) 2013 Google Inc. All rights reserved.
4 # 4 #
5 # Redistribution and use in source and binary forms, with or without 5 # Redistribution and use in source and binary forms, with or without
6 # modification, are permitted provided that the following conditions are 6 # modification, are permitted provided that the following conditions are
7 # met: 7 # met:
8 # 8 #
9 # * Redistributions of source code must retain the above copyright 9 # * Redistributions of source code must retain the above copyright
10 # notice, this list of conditions and the following disclaimer. 10 # notice, this list of conditions and the following disclaimer.
(...skipping 537 matching lines...) Expand 10 before | Expand all | Expand 10 after
548 write_dependencies_file(options.interface_dependencies_file, only_if_changed ) 548 write_dependencies_file(options.interface_dependencies_file, only_if_changed )
549 write_pickle_file(options.interfaces_info_file, interfaces_info, only_if_cha nged) 549 write_pickle_file(options.interfaces_info_file, interfaces_info, only_if_cha nged)
550 for interface_name, filename in global_constructors_filenames.iteritems(): 550 for interface_name, filename in global_constructors_filenames.iteritems():
551 if interface_name in interfaces_info: 551 if interface_name in interfaces_info:
552 write_global_constructors_partial_interface(interface_name, filename , global_constructors[interface_name], only_if_changed) 552 write_global_constructors_partial_interface(interface_name, filename , global_constructors[interface_name], only_if_changed)
553 write_event_names_file(options.event_names_file, only_if_changed) 553 write_event_names_file(options.event_names_file, only_if_changed)
554 554
555 555
556 if __name__ == '__main__': 556 if __name__ == '__main__':
557 main() 557 main()
OLDNEW
« no previous file with comments | « Source/bindings/scripts/compute_dependencies.py ('k') | Tools/Scripts/webkitpy/bindings/main.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698