| 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 17 matching lines...) Expand all Loading... |
| 28 'action_name': 'build_dart_analyzer', | 28 'action_name': 'build_dart_analyzer', |
| 29 'inputs': [ | 29 'inputs': [ |
| 30 'sources.gypi', | 30 'sources.gypi', |
| 31 'test_sources.gypi', | 31 'test_sources.gypi', |
| 32 '<@(java_sources)', | 32 '<@(java_sources)', |
| 33 '<@(java_resources)', | 33 '<@(java_resources)', |
| 34 '<@(javatests_sources)', | 34 '<@(javatests_sources)', |
| 35 '<@(javatests_resources)', | 35 '<@(javatests_resources)', |
| 36 'dart_analyzer.xml', | 36 'dart_analyzer.xml', |
| 37 'scripts/dart_analyzer.sh', | 37 'scripts/dart_analyzer.sh', |
| 38 'scripts/dart_analyzer.bat', |
| 38 'scripts/analyzer_metrics.sh', | 39 'scripts/analyzer_metrics.sh', |
| 39 '../third_party/args4j/2.0.12/args4j-2.0.12.jar', | 40 '../third_party/args4j/2.0.12/args4j-2.0.12.jar', |
| 40 '../third_party/guava/r09/guava-r09.jar', | 41 '../third_party/guava/r09/guava-r09.jar', |
| 41 '../third_party/hamcrest/v1_3/hamcrest-core-1.3.0RC2.jar', | 42 '../third_party/hamcrest/v1_3/hamcrest-core-1.3.0RC2.jar', |
| 42 '../third_party/hamcrest/v1_3/hamcrest-generator-1.3.0RC2.jar', | 43 '../third_party/hamcrest/v1_3/hamcrest-generator-1.3.0RC2.jar', |
| 43 '../third_party/hamcrest/v1_3/hamcrest-integration-1.3.0RC2.jar', | 44 '../third_party/hamcrest/v1_3/hamcrest-integration-1.3.0RC2.jar', |
| 44 '../third_party/hamcrest/v1_3/hamcrest-library-1.3.0RC2.jar', | 45 '../third_party/hamcrest/v1_3/hamcrest-library-1.3.0RC2.jar', |
| 45 ], | 46 ], |
| 46 'outputs': [ | 47 'outputs': [ |
| 47 '<(INTERMEDIATE_DIR)/<(_target_name)/tests.jar', | 48 '<(INTERMEDIATE_DIR)/<(_target_name)/tests.jar', |
| 48 '<(PRODUCT_DIR)/analyzer/bin/dart_analyzer', | 49 '<(PRODUCT_DIR)/analyzer/bin/dart_analyzer', |
| 50 '<(PRODUCT_DIR)/analyzer/bin/dart_analyzer.bat', |
| 49 '<(PRODUCT_DIR)/analyzer/util/analyzer/dart_analyzer.jar', | 51 '<(PRODUCT_DIR)/analyzer/util/analyzer/dart_analyzer.jar', |
| 50 '<(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', |
| 51 '<(PRODUCT_DIR)/analyzer/util/analyzer/guava/r09/guava-r09.jar', | 53 '<(PRODUCT_DIR)/analyzer/util/analyzer/guava/r09/guava-r09.jar', |
| 52 ], | 54 ], |
| 53 'action' : [ | 55 'action' : [ |
| 54 '../third_party/apache_ant/v1_7_1/bin/ant<(script_suffix)', | 56 '../third_party/apache_ant/v1_7_1/bin/ant<(script_suffix)', |
| 55 '-f', 'dart_analyzer.xml', | 57 '-f', 'dart_analyzer.xml', |
| 56 '-Dbuild.dir=<(INTERMEDIATE_DIR)/<(_target_name)', | 58 '-Dbuild.dir=<(INTERMEDIATE_DIR)/<(_target_name)', |
| 57 '-Ddist.dir=<(PRODUCT_DIR)/analyzer', | 59 '-Ddist.dir=<(PRODUCT_DIR)/analyzer', |
| 58 'clean', | 60 'clean', |
| (...skipping 10 matching lines...) Expand all Loading... |
| 69 }, | 71 }, |
| 70 ], | 72 ], |
| 71 }, | 73 }, |
| 72 { | 74 { |
| 73 # 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. |
| 74 'target_name': 'dummy', | 76 'target_name': 'dummy', |
| 75 'type': 'none', | 77 'type': 'none', |
| 76 }, | 78 }, |
| 77 ], | 79 ], |
| 78 } | 80 } |
| OLD | NEW |