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 23 matching lines...) Expand all Loading... |
34 'html/canvas', | 34 'html/canvas', |
35 'inspector', | 35 'inspector', |
36 'loader', | 36 'loader', |
37 'loader/appcache', | 37 'loader/appcache', |
38 'Modules/mediastream', | 38 'Modules/mediastream', |
39 'Modules/geolocation', | 39 'Modules/geolocation', |
40 'notifications', | 40 'notifications', |
41 'page', | 41 'page', |
42 'plugins', | 42 'plugins', |
43 'storage', | 43 'storage', |
| 44 'Modules/webdatabase', |
44 'svg', | 45 'svg', |
45 'webaudio', | 46 'webaudio', |
46 'Modules/websockets', | 47 'Modules/websockets', |
47 'workers', | 48 'workers', |
48 'xml', | 49 'xml', |
49 ] | 50 ] |
50 | 51 |
51 # TODO(vsm): Move this to a README. | 52 # TODO(vsm): Move this to a README. |
52 # This is the Dart SVN revision. | 53 # This is the Dart SVN revision. |
53 webkit_revision = '1060' | 54 webkit_revision = '1060' |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 | 178 |
178 builder.fix_displacements('WebKit') | 179 builder.fix_displacements('WebKit') |
179 | 180 |
180 # Cleanup: | 181 # Cleanup: |
181 builder.normalize_annotations(['WebKit', 'Dart']) | 182 builder.normalize_annotations(['WebKit', 'Dart']) |
182 | 183 |
183 db.Save() | 184 db.Save() |
184 | 185 |
185 if __name__ == '__main__': | 186 if __name__ == '__main__': |
186 sys.exit(main()) | 187 sys.exit(main()) |
OLD | NEW |