OLD | NEW |
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 Loading... |
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() |
OLD | NEW |