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

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

Issue 8618007: Enable SVG for dartc and frog (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years, 1 month 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/scripts/dartgenerator.py ('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 20 matching lines...) Expand all
31 'fileapi', 31 'fileapi',
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 # TODO(vsm): Fix generator to deal with multiple 41 'svg',
42 # 'svg',
43 # TODO(vsm): Fix parser/idl file to re-enable this. 42 # TODO(vsm): Fix parser/idl file to re-enable this.
44 # 'webaudio', 43 # 'webaudio',
45 'websockets', 44 'websockets',
46 'workers', 45 'workers',
47 'xml', 46 'xml',
48 ] 47 ]
49 # TODO(vsm): Move this to a README. 48 # TODO(vsm): Move this to a README.
50 # This is the Dart SVN revision. 49 # This is the Dart SVN revision.
51 webkit_revision = '1060' 50 webkit_revision = '1060'
52 51
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 117
119 builder.fix_displacements('WebKit') 118 builder.fix_displacements('WebKit')
120 119
121 # Cleanup: 120 # Cleanup:
122 builder.normalize_annotations(['WebKit', 'Dart']) 121 builder.normalize_annotations(['WebKit', 'Dart'])
123 122
124 db.Save() 123 db.Save()
125 124
126 if __name__ == '__main__': 125 if __name__ == '__main__':
127 sys.exit(main()) 126 sys.exit(main())
OLDNEW
« no previous file with comments | « client/dom/scripts/dartgenerator.py ('k') | client/dom/wrapping_dom.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698