Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(191)

Side by Side Diff: client/dom/scripts/fremontcutbuilder.py

Issue 8785014: Turn on webaudio for JS backends. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « client/dom/monkey_dom.dart.broken ('k') | client/dom/wrapping_dom.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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())
OLDNEW
« no previous file with comments | « client/dom/monkey_dom.dart.broken ('k') | client/dom/wrapping_dom.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698