| 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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 options = parse_options() | 109 options = parse_options() |
| 110 event_idl_files = read_file_to_list(options.event_idl_files_list) | 110 event_idl_files = read_file_to_list(options.event_idl_files_list) |
| 111 write_event_interfaces_file(event_idl_files, | 111 write_event_interfaces_file(event_idl_files, |
| 112 options.event_interfaces_file, | 112 options.event_interfaces_file, |
| 113 options.write_file_only_if_changed, | 113 options.write_file_only_if_changed, |
| 114 options.suffix) | 114 options.suffix) |
| 115 | 115 |
| 116 | 116 |
| 117 if __name__ == '__main__': | 117 if __name__ == '__main__': |
| 118 sys.exit(main()) | 118 sys.exit(main()) |
| OLD | NEW |