| 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': [ |
| 11 { | 11 { |
| 12 'target_name': 'dartc', | 12 'target_name': 'dartc', |
| 13 'type': 'none', | 13 'type': 'none', |
| 14 'actions': [ | 14 'actions': [ |
| 15 { | 15 { |
| 16 'action_name': 'build_dartc', | 16 'action_name': 'build_dartc', |
| 17 'inputs': [ | 17 'inputs': [ |
| 18 'sources.gypi', | 18 'sources.gypi', |
| 19 'test_sources.gypi', | 19 'test_sources.gypi', |
| 20 'corelib_sources.gypi', | |
| 21 'compiler_corelib_sources.gypi', | |
| 22 '<@(java_sources)', | 20 '<@(java_sources)', |
| 23 '<@(java_resources)', | 21 '<@(java_resources)', |
| 24 '<@(javatests_sources)', | 22 '<@(javatests_sources)', |
| 25 '<@(javatests_resources)', | 23 '<@(javatests_resources)', |
| 26 'dartc.xml', | 24 'dartc.xml', |
| 27 'scripts/dartc.sh', | 25 'scripts/dartc.sh', |
| 28 'scripts/dartc_run.sh', | 26 'scripts/dartc_run.sh', |
| 29 'scripts/dartc_metrics.sh', | 27 'scripts/dartc_metrics.sh', |
| 30 '../third_party/args4j/2.0.12/args4j-2.0.12.jar', | 28 '../third_party/args4j/2.0.12/args4j-2.0.12.jar', |
| 31 '../third_party/guava/r09/guava-r09.jar', | 29 '../third_party/guava/r09/guava-r09.jar', |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 }, | 67 }, |
| 70 ], | 68 ], |
| 71 }, | 69 }, |
| 72 { | 70 { |
| 73 # GYP won't generate a catch-all target if there's only one target. | 71 # GYP won't generate a catch-all target if there's only one target. |
| 74 'target_name': 'dummy', | 72 'target_name': 'dummy', |
| 75 'type': 'none', | 73 'type': 'none', |
| 76 }, | 74 }, |
| 77 ], | 75 ], |
| 78 } | 76 } |
| OLD | NEW |