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

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

Issue 9663062: Prepare fremontcutbuilder for Chromium/WebKit roll. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 months 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 | « no previous file | no next file » | 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 23 matching lines...) Expand all
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
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())
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698