| OLD | NEW |
| 1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2011, 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 'vm/vm.gypi', | 7 'vm/vm.gypi', |
| 8 'bin/bin.gypi', | 8 'bin/bin.gypi', |
| 9 'third_party/double-conversion/src/double-conversion.gypi', | 9 'third_party/double-conversion/src/double-conversion.gypi', |
| 10 'third_party/jscre/jscre.gypi', | 10 'third_party/jscre/jscre.gypi', |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 'inputs': [ | 84 'inputs': [ |
| 85 'tools/make_version.py', | 85 'tools/make_version.py', |
| 86 '../tools/VERSION', | 86 '../tools/VERSION', |
| 87 '<(version_in_cc_file)', | 87 '<(version_in_cc_file)', |
| 88 ], | 88 ], |
| 89 'outputs': [ | 89 'outputs': [ |
| 90 '<(version_cc_file)', | 90 '<(version_cc_file)', |
| 91 ], | 91 ], |
| 92 'action': [ | 92 'action': [ |
| 93 'python', | 93 'python', |
| 94 '-u', # Make standard I/O unbuffered. |
| 94 'tools/make_version.py', | 95 'tools/make_version.py', |
| 95 '--output', '<(version_cc_file)', | 96 '--output', '<(version_cc_file)', |
| 96 '--input', '<(version_in_cc_file)', | 97 '--input', '<(version_in_cc_file)', |
| 97 '--version', '../tools/VERSION', | 98 '--version', '../tools/VERSION', |
| 98 ], | 99 ], |
| 99 }, | 100 }, |
| 100 ], | 101 ], |
| 101 }, | 102 }, |
| 102 ], | 103 ], |
| 103 } | 104 } |
| OLD | NEW |