| 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 21 matching lines...) Expand all Loading... |
| 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 'svg', | 41 'svg', |
| 42 # TODO(vsm): Fix parser/idl file to re-enable this. | 42 'webaudio', |
| 43 # 'webaudio', | |
| 44 'websockets', | 43 'websockets', |
| 45 'workers', | 44 'workers', |
| 46 'xml', | 45 'xml', |
| 47 ] | 46 ] |
| 48 # TODO(vsm): Move this to a README. | 47 # TODO(vsm): Move this to a README. |
| 49 # This is the Dart SVN revision. | 48 # This is the Dart SVN revision. |
| 50 webkit_revision = '1060' | 49 webkit_revision = '1060' |
| 51 | 50 |
| 52 # TODO(vsm): Reconcile what is exposed here and inside WebKit code | 51 # TODO(vsm): Reconcile what is exposed here and inside WebKit code |
| 53 # generation. | 52 # generation. |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 | 116 |
| 118 builder.fix_displacements('WebKit') | 117 builder.fix_displacements('WebKit') |
| 119 | 118 |
| 120 # Cleanup: | 119 # Cleanup: |
| 121 builder.normalize_annotations(['WebKit', 'Dart']) | 120 builder.normalize_annotations(['WebKit', 'Dart']) |
| 122 | 121 |
| 123 db.Save() | 122 db.Save() |
| 124 | 123 |
| 125 if __name__ == '__main__': | 124 if __name__ == '__main__': |
| 126 sys.exit(main()) | 125 sys.exit(main()) |
| OLD | NEW |