| OLD | NEW |
| 1 #!/usr/bin/python | 1 #!/usr/bin/python |
| 2 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 2 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 3 # for details. All rights reserved. Use of this source code is governed by a | 3 # for details. All rights reserved. Use of this source code is governed by a |
| 4 # BSD-style license that can be found in the LICENSE file. | 4 # BSD-style license that can be found in the LICENSE file. |
| 5 | 5 |
| 6 import database | 6 import database |
| 7 import databasebuilder | 7 import databasebuilder |
| 8 import idlparser | 8 import idlparser |
| 9 import os.path | 9 import os.path |
| 10 import logging.config | 10 import logging.config |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 'fileapi', | 31 'fileapi', |
| 32 'html', | 32 'html', |
| 33 'html/canvas', | 33 'html/canvas', |
| 34 'inspector', | 34 'inspector', |
| 35 'loader', | 35 'loader', |
| 36 'loader/appcache', | 36 'loader/appcache', |
| 37 'notifications', | 37 'notifications', |
| 38 'page', | 38 'page', |
| 39 'plugins', | 39 'plugins', |
| 40 'storage', | 40 'storage', |
| 41 # TODO(vsm): Fix generator to deal with multiple | 41 'svg', |
| 42 # 'svg', | |
| 43 # TODO(vsm): Fix parser/idl file to re-enable this. | 42 # TODO(vsm): Fix parser/idl file to re-enable this. |
| 44 # 'webaudio', | 43 # 'webaudio', |
| 45 'websockets', | 44 'websockets', |
| 46 'workers', | 45 'workers', |
| 47 'xml', | 46 'xml', |
| 48 ] | 47 ] |
| 49 # TODO(vsm): Move this to a README. | 48 # TODO(vsm): Move this to a README. |
| 50 # This is the Dart SVN revision. | 49 # This is the Dart SVN revision. |
| 51 webkit_revision = '1060' | 50 webkit_revision = '1060' |
| 52 | 51 |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 | 117 |
| 119 builder.fix_displacements('WebKit') | 118 builder.fix_displacements('WebKit') |
| 120 | 119 |
| 121 # Cleanup: | 120 # Cleanup: |
| 122 builder.normalize_annotations(['WebKit', 'Dart']) | 121 builder.normalize_annotations(['WebKit', 'Dart']) |
| 123 | 122 |
| 124 db.Save() | 123 db.Save() |
| 125 | 124 |
| 126 if __name__ == '__main__': | 125 if __name__ == '__main__': |
| 127 sys.exit(main()) | 126 sys.exit(main()) |
| OLD | NEW |