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 'includes' : [ | 6 'includes' : [ |
7 # These files are generated by 'gclient runhooks'. | 7 # These files are generated by 'gclient runhooks'. |
8 'plugin_command_analyze_sources.gypi', | 8 'plugin_command_analyze_sources.gypi', |
9 'plugin_engine_sources.gypi', | 9 'plugin_engine_sources.gypi', |
10 ], | 10 ], |
(...skipping 19 matching lines...) Expand all Loading... |
30 'actions': [ | 30 'actions': [ |
31 { | 31 { |
32 'action_name': 'create_analyzer', | 32 'action_name': 'create_analyzer', |
33 'inputs': [ | 33 'inputs': [ |
34 '<@(plugin_command_analyze_java_sources)', | 34 '<@(plugin_command_analyze_java_sources)', |
35 '<@(plugin_engine_java_sources)', | 35 '<@(plugin_engine_java_sources)', |
36 '<@(dependent_jar_files)', | 36 '<@(dependent_jar_files)', |
37 'tools/compile_analyzer.py', | 37 'tools/compile_analyzer.py', |
38 'plugin_command_analyze_sources.gypi', | 38 'plugin_command_analyze_sources.gypi', |
39 'plugin_engine_sources.gypi', | 39 'plugin_engine_sources.gypi', |
| 40 '../tools/VERSION', |
40 ], | 41 ], |
41 'outputs': [ | 42 'outputs': [ |
42 '<(PRODUCT_DIR)/<(analyzer_name)/<(analyzer_name).jar', | 43 '<(PRODUCT_DIR)/<(analyzer_name)/<(analyzer_name).jar', |
43 ], | 44 ], |
44 'action': [ | 45 'action': [ |
45 'python', | 46 'python', |
46 'tools/compile_analyzer.py', | 47 'tools/compile_analyzer.py', |
47 '--output_dir', '<(PRODUCT_DIR)/<(analyzer_name)/', | 48 '--output_dir', '<(PRODUCT_DIR)/<(analyzer_name)/', |
48 '--jar_file_name', '<(analyzer_name).jar', | 49 '--jar_file_name', '<(analyzer_name).jar', |
49 '--jar_entry_directory', 'com', | 50 '--jar_entry_directory', 'com', |
50 '--dependent_jar_files', '"<@(dependent_jar_files)"', | 51 '--dependent_jar_files', '"<@(dependent_jar_files)"', |
51 '--entry_point', 'com.google.dart.command.analyze.AnalyzerMain', | 52 '--entry_point', 'com.google.dart.command.analyze.AnalyzerMain', |
52 '--class_path_file', 'classpath_file', | 53 '--class_path_file', 'classpath_file', |
53 # These files are generated by 'gclient runhooks'. | 54 # These files are generated by 'gclient runhooks'. |
54 # The '@filename' will instruct javac to read 'filename' and treat | 55 # The '@filename' will instruct javac to read 'filename' and treat |
55 # every line as an additional commandline argument. | 56 # every line as an additional commandline argument. |
56 '@plugin_command_analyze_sources.txt', | 57 '@plugin_command_analyze_sources.txt', |
57 '@plugin_engine_sources.txt', | 58 '@plugin_engine_sources.txt', |
58 ], | 59 ], |
59 'message': 'Creating <(_outputs).', | 60 'message': 'Creating <(_outputs).', |
60 }, | 61 }, |
61 ], | 62 ], |
62 }, | 63 }, |
63 ] | 64 ] |
64 } | 65 } |
OLD | NEW |