OLD | NEW |
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 Loading... |
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() |
OLD | NEW |