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

Side by Side Diff: editor/tools/compile_analyzer_java.py

Issue 240723006: Replace Java based analyzer with Dart based analyzer when building SDK (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 8 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
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 2 # Copyright (c) 2013, 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 # Script to compile the analyzer. 6 # Script to compile the analyzer.
7 # 7 #
8 # Usage: compile_analyzer.py OPTIONS files 8 # Usage: compile_analyzer.py OPTIONS files
9 # 9 #
10 10
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 os.makedirs(options.output_dir) 133 os.makedirs(options.output_dir)
134 134
135 CopyFiles(options) 135 CopyFiles(options)
136 CreateManifestFile(options) 136 CreateManifestFile(options)
137 CompileAnalyzer(options, args) 137 CompileAnalyzer(options, args)
138 CreateJarFile(options) 138 CreateJarFile(options)
139 139
140 140
141 if __name__ == '__main__': 141 if __name__ == '__main__':
142 main() 142 main()
OLDNEW
« no previous file with comments | « editor/tools/compile_analyzer.py ('k') | sdk/bin/dartanalyzer » ('j') | sdk/bin/dartanalyzer » ('J')

Powered by Google App Engine
This is Rietveld 408576698