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 18 matching lines...) Expand all Loading... |
29 'Modules/indexeddb', | 29 'Modules/indexeddb', |
30 'css', | 30 'css', |
31 'dom', | 31 'dom', |
32 'fileapi', | 32 'fileapi', |
33 'html', | 33 'html', |
34 'html/canvas', | 34 'html/canvas', |
35 'inspector', | 35 'inspector', |
36 'loader', | 36 'loader', |
37 'loader/appcache', | 37 'loader/appcache', |
38 'mediastream', | 38 'mediastream', |
| 39 'Modules/geolocation', |
39 'notifications', | 40 'notifications', |
40 'page', | 41 'page', |
41 'plugins', | 42 'plugins', |
42 'storage', | 43 'storage', |
43 'svg', | 44 'svg', |
44 'webaudio', | 45 'webaudio', |
45 'websockets', | 46 'websockets', |
46 'workers', | 47 'workers', |
47 'xml', | 48 'xml', |
48 ] | 49 ] |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
175 | 176 |
176 builder.fix_displacements('WebKit') | 177 builder.fix_displacements('WebKit') |
177 | 178 |
178 # Cleanup: | 179 # Cleanup: |
179 builder.normalize_annotations(['WebKit', 'Dart']) | 180 builder.normalize_annotations(['WebKit', 'Dart']) |
180 | 181 |
181 db.Save() | 182 db.Save() |
182 | 183 |
183 if __name__ == '__main__': | 184 if __name__ == '__main__': |
184 sys.exit(main()) | 185 sys.exit(main()) |
OLD | NEW |