| OLD | NEW |
| 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2012, 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 'sources.gypi', | 7 'sources.gypi', |
| 8 'test_sources.gypi', | 8 'test_sources.gypi', |
| 9 ], | 9 ], |
| 10 'targets': [ | 10 'targets': [ |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 ], | 46 ], |
| 47 'outputs': [ | 47 'outputs': [ |
| 48 '<(INTERMEDIATE_DIR)/<(_target_name)/tests.jar', | 48 '<(INTERMEDIATE_DIR)/<(_target_name)/tests.jar', |
| 49 '<(PRODUCT_DIR)/analyzer/bin/dart_analyzer', | 49 '<(PRODUCT_DIR)/analyzer/bin/dart_analyzer', |
| 50 '<(PRODUCT_DIR)/analyzer/bin/dart_analyzer.bat', | 50 '<(PRODUCT_DIR)/analyzer/bin/dart_analyzer.bat', |
| 51 '<(PRODUCT_DIR)/analyzer/util/analyzer/dart_analyzer.jar', | 51 '<(PRODUCT_DIR)/analyzer/util/analyzer/dart_analyzer.jar', |
| 52 '<(PRODUCT_DIR)/analyzer/util/analyzer/args4j/2.0.12/args4j-2.0.12.j
ar', | 52 '<(PRODUCT_DIR)/analyzer/util/analyzer/args4j/2.0.12/args4j-2.0.12.j
ar', |
| 53 '<(PRODUCT_DIR)/analyzer/util/analyzer/guava/r09/guava-r09.jar', | 53 '<(PRODUCT_DIR)/analyzer/util/analyzer/guava/r09/guava-r09.jar', |
| 54 ], | 54 ], |
| 55 'action' : [ | 55 'action' : [ |
| 56 '../third_party/apache_ant/v1_7_1/bin/ant<(script_suffix)', | 56 '../third_party/apache_ant/1.8.4/bin/ant<(script_suffix)', |
| 57 '-f', 'dart_analyzer.xml', | 57 '-f', 'dart_analyzer.xml', |
| 58 '-Dbuild.dir=<(INTERMEDIATE_DIR)/<(_target_name)', | 58 '-Dbuild.dir=<(INTERMEDIATE_DIR)/<(_target_name)', |
| 59 '-Ddist.dir=<(PRODUCT_DIR)/analyzer', | 59 '-Ddist.dir=<(PRODUCT_DIR)/analyzer', |
| 60 'clean', | 60 'clean', |
| 61 'dist', | 61 'dist', |
| 62 'tests.jar', | 62 'tests.jar', |
| 63 ], | 63 ], |
| 64 'message': 'Building dart_analyzer.', | 64 'message': 'Building dart_analyzer.', |
| 65 }, | 65 }, |
| 66 { | 66 { |
| 67 'action_name': 'copy_tests', | 67 'action_name': 'copy_tests', |
| 68 'inputs': [ '<(INTERMEDIATE_DIR)/<(_target_name)/tests.jar' ], | 68 'inputs': [ '<(INTERMEDIATE_DIR)/<(_target_name)/tests.jar' ], |
| 69 'outputs': [ '<(PRODUCT_DIR)/analyzer/dart_analyzer_tests.jar' ], | 69 'outputs': [ '<(PRODUCT_DIR)/analyzer/dart_analyzer_tests.jar' ], |
| 70 'action': [ 'cp', '<@(_inputs)', '<@(_outputs)' ] | 70 'action': [ 'cp', '<@(_inputs)', '<@(_outputs)' ] |
| 71 }, | 71 }, |
| 72 ], | 72 ], |
| 73 }, | 73 }, |
| 74 { | 74 { |
| 75 # GYP won't generate a catch-all target if there's only one target. | 75 # GYP won't generate a catch-all target if there's only one target. |
| 76 'target_name': 'dummy', | 76 'target_name': 'dummy', |
| 77 'type': 'none', | 77 'type': 'none', |
| 78 }, | 78 }, |
| 79 ], | 79 ], |
| 80 } | 80 } |
| OLD | NEW |