| 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 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 for idl_filename in idl_files: | 190 for idl_filename in idl_files: |
| 191 compute_info_individual(idl_filename, options.component_dir) | 191 compute_info_individual(idl_filename, options.component_dir) |
| 192 | 192 |
| 193 write_pickle_file(options.interfaces_info_file, | 193 write_pickle_file(options.interfaces_info_file, |
| 194 info_individual(), | 194 info_individual(), |
| 195 options.write_file_only_if_changed) | 195 options.write_file_only_if_changed) |
| 196 | 196 |
| 197 | 197 |
| 198 if __name__ == '__main__': | 198 if __name__ == '__main__': |
| 199 sys.exit(main()) | 199 sys.exit(main()) |
| OLD | NEW |