| 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 'ENABLE_INPUT_SPEECH', | 85 'ENABLE_INPUT_SPEECH', |
| 86 'ENABLE_JAVASCRIPT_DEBUGGER', | 86 'ENABLE_JAVASCRIPT_DEBUGGER', |
| 87 'ENABLE_JAVASCRIPT_I18N_API', | 87 'ENABLE_JAVASCRIPT_I18N_API', |
| 88 'ENABLE_LINK_PREFETCH', | 88 'ENABLE_LINK_PREFETCH', |
| 89 'ENABLE_MEDIA_SOURCE', | 89 'ENABLE_MEDIA_SOURCE', |
| 90 'ENABLE_MEDIA_STATISTICS', | 90 'ENABLE_MEDIA_STATISTICS', |
| 91 'ENABLE_MEDIA_STREAM', | 91 'ENABLE_MEDIA_STREAM', |
| 92 'ENABLE_METER_TAG', | 92 'ENABLE_METER_TAG', |
| 93 'ENABLE_MHTML', | 93 'ENABLE_MHTML', |
| 94 'ENABLE_MOUSE_LOCK_API', | 94 'ENABLE_MOUSE_LOCK_API', |
| 95 'ENABLE_MUTATION_OBSERVERS', |
| 95 'ENABLE_NOTIFICATIONS', | 96 'ENABLE_NOTIFICATIONS', |
| 96 'ENABLE_PAGE_VISIBILITY_API', | 97 'ENABLE_PAGE_VISIBILITY_API', |
| 97 'ENABLE_PROGRESS_TAG', | 98 'ENABLE_PROGRESS_TAG', |
| 98 'ENABLE_QUOTA', | 99 'ENABLE_QUOTA', |
| 99 'ENABLE_REGISTER_PROTOCOL_HANDLER', | 100 'ENABLE_REGISTER_PROTOCOL_HANDLER', |
| 100 'ENABLE_REQUEST_ANIMATION_FRAME', | 101 'ENABLE_REQUEST_ANIMATION_FRAME', |
| 101 'ENABLE_RUBY', | 102 'ENABLE_RUBY', |
| 102 'ENABLE_SANDBOX', | 103 'ENABLE_SANDBOX', |
| 103 'ENABLE_SCRIPTED_SPEECH', | 104 'ENABLE_SCRIPTED_SPEECH', |
| 104 'ENABLE_SHADOW_DOM', | 105 'ENABLE_SHADOW_DOM', |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 | 191 |
| 191 builder.fix_displacements('WebKit') | 192 builder.fix_displacements('WebKit') |
| 192 | 193 |
| 193 # Cleanup: | 194 # Cleanup: |
| 194 builder.normalize_annotations(['WebKit', 'Dart']) | 195 builder.normalize_annotations(['WebKit', 'Dart']) |
| 195 | 196 |
| 196 db.Save() | 197 db.Save() |
| 197 | 198 |
| 198 if __name__ == '__main__': | 199 if __name__ == '__main__': |
| 199 sys.exit(main()) | 200 sys.exit(main()) |
| OLD | NEW |