| 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 'corelib_sources.gypi', | 9 'corelib_sources.gypi', |
| 10 'compiler_corelib_sources.gypi', | 10 'compiler_corelib_sources.gypi', |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 '../third_party/hamcrest/v1_3/hamcrest-integration-1.3.0RC2.jar', | 45 '../third_party/hamcrest/v1_3/hamcrest-integration-1.3.0RC2.jar', |
| 46 '../third_party/hamcrest/v1_3/hamcrest-library-1.3.0RC2.jar', | 46 '../third_party/hamcrest/v1_3/hamcrest-library-1.3.0RC2.jar', |
| 47 ], | 47 ], |
| 48 'outputs': [ | 48 'outputs': [ |
| 49 '<(INTERMEDIATE_DIR)/<(_target_name)/tests.jar', | 49 '<(INTERMEDIATE_DIR)/<(_target_name)/tests.jar', |
| 50 '<(PRODUCT_DIR)/compiler/bin/dartc', | 50 '<(PRODUCT_DIR)/compiler/bin/dartc', |
| 51 '<(PRODUCT_DIR)/compiler/lib/args4j/2.0.12/args4j-2.0.12.jar', | 51 '<(PRODUCT_DIR)/compiler/lib/args4j/2.0.12/args4j-2.0.12.jar', |
| 52 '<(PRODUCT_DIR)/compiler/lib/dartc.jar', | 52 '<(PRODUCT_DIR)/compiler/lib/dartc.jar', |
| 53 '<(PRODUCT_DIR)/compiler/lib/guava/r09/guava-r09.jar', | 53 '<(PRODUCT_DIR)/compiler/lib/guava/r09/guava-r09.jar', |
| 54 '<(PRODUCT_DIR)/compiler/lib/json/r2_20080312/json.jar', | 54 '<(PRODUCT_DIR)/compiler/lib/json/r2_20080312/json.jar', |
| 55 '<(PRODUCT_DIR)/compiler/lib/rhino/1_7R3/js.jar', | |
| 56 ], | 55 ], |
| 57 'action' : [ | 56 'action' : [ |
| 58 '../third_party/apache_ant/v1_7_1/bin/ant', | 57 '../third_party/apache_ant/v1_7_1/bin/ant', |
| 59 '-f', 'dartc.xml', | 58 '-f', 'dartc.xml', |
| 60 '-Dbuild.dir=<(INTERMEDIATE_DIR)/<(_target_name)', | 59 '-Dbuild.dir=<(INTERMEDIATE_DIR)/<(_target_name)', |
| 61 '-Ddist.dir=<(PRODUCT_DIR)/compiler', | 60 '-Ddist.dir=<(PRODUCT_DIR)/compiler', |
| 62 'clean', | 61 'clean', |
| 63 'dist', | 62 'dist', |
| 64 'tests.jar', | 63 'tests.jar', |
| 65 ], | 64 ], |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 }, | 214 }, |
| 216 ], | 215 ], |
| 217 }, | 216 }, |
| 218 { | 217 { |
| 219 # GYP won't generate a catch-all target if there's only one target. | 218 # GYP won't generate a catch-all target if there's only one target. |
| 220 'target_name': 'dummy', | 219 'target_name': 'dummy', |
| 221 'type': 'none', | 220 'type': 'none', |
| 222 }, | 221 }, |
| 223 ], | 222 ], |
| 224 } | 223 } |
| OLD | NEW |