| OLD | NEW |
| 1 # Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 # for details. All rights reserved. Use of this source code is governed by a | 2 # for details. All rights reserved. Use of this source code is governed by a |
| 3 # BSD-style license that can be found in the LICENSE file. | 3 # BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'analyzer_name': 'new_analyzer', | 7 'analyzer_name': 'dartanalyzer', |
| 8 # When changing the jar files that we depend on please change the list | 8 # When changing the jar files that we depend on please change the list |
| 9 # below. | 9 # below. |
| 10 'dependent_jar_files': [ | 10 'dependent_jar_files': [ |
| 11 '../third_party/commons-lang/3.1/commons-lang3-3.1.jar', | 11 '../third_party/commons-lang/3.1/commons-lang3-3.1.jar', |
| 12 '../third_party/json/r2_20080312/json.jar', | 12 '../third_party/json/r2_20080312/json.jar', |
| 13 '../third_party/guava/r13/guava-13.0.1.jar', | 13 '../third_party/guava/r13/guava-13.0.1.jar', |
| 14 '../third_party/args4j/2.0.12/args4j-2.0.12.jar' | 14 '../third_party/args4j/2.0.12/args4j-2.0.12.jar' |
| 15 ], | 15 ], |
| 16 }, | 16 }, |
| 17 'targets': [ | 17 'targets': [ |
| (...skipping 29 matching lines...) Expand all Loading... |
| 47 '--entry_point', 'com.google.dart.command.analyze.AnalyzerMain', | 47 '--entry_point', 'com.google.dart.command.analyze.AnalyzerMain', |
| 48 '--class_path_file', 'classpath_file', | 48 '--class_path_file', 'classpath_file', |
| 49 '<@(java_source_files)', | 49 '<@(java_source_files)', |
| 50 ], | 50 ], |
| 51 'message': 'Creating <(_outputs).', | 51 'message': 'Creating <(_outputs).', |
| 52 }, | 52 }, |
| 53 ], | 53 ], |
| 54 }, | 54 }, |
| 55 ] | 55 ] |
| 56 } | 56 } |
| 57 | |
| 58 | |
| OLD | NEW |