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

Side by Side Diff: frog/presubmit.py

Issue 8498020: Beginning of CSS parser using frog parsering infrastructure. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Minor cleanup. 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
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env 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 os 6 import os
7 import subprocess 7 import subprocess
8 import sys 8 import sys
9 import time 9 import time
10 10
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 85
86 # Run frogium client tests. This is a pretty quick test but tends to uncover 86 # Run frogium client tests. This is a pretty quick test but tends to uncover
87 # different issues due to the size/complexity of the DOM APIs. 87 # different issues due to the size/complexity of the DOM APIs.
88 cmd = test_cmd + ['--component=frogium', 'client'] 88 cmd = test_cmd + ['--component=frogium', 'client']
89 RunCommand(*cmd, verbose=True) 89 RunCommand(*cmd, verbose=True)
90 90
91 # TODO(jimhug): Consider adding co19 back when it delivers more value 91 # TODO(jimhug): Consider adding co19 back when it delivers more value
92 # than pain. 92 # than pain.
93 # Run leg and frogsh on most of the tests. 93 # Run leg and frogsh on most of the tests.
94 cmd = test_cmd + ['--component=frogsh,leg', 'language', 'corelib', 'leg', 94 cmd = test_cmd + ['--component=frogsh,leg', 'language', 'corelib', 'leg',
95 'isolate', 'peg', 'leg_only', 'frog'] 95 'isolate', 'peg', 'leg_only', 'frog', 'css']
96 RunCommand(*cmd, verbose=True) 96 RunCommand(*cmd, verbose=True)
97 97
98
99 if __name__ == '__main__': 98 if __name__ == '__main__':
100 try: 99 try:
101 sys.exit(main(sys.argv)) 100 sys.exit(main(sys.argv))
102 except Error as e: 101 except Error as e:
103 sys.stderr.write('%s\n' % e) 102 sys.stderr.write('%s\n' % e)
104 sys.exit(1) 103 sys.exit(1)
OLDNEW
« no previous file with comments | « frog/file_system_memory.dart ('k') | frog/source.dart » ('j') | utils/css/parser.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698