| 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 'tools/gyp/runtime-configurations.gypi', | 7 'tools/gyp/runtime-configurations.gypi', |
| 8 'vm/vm.gypi', | 8 'vm/vm.gypi', |
| 9 'bin/bin.gypi', | 9 'bin/bin.gypi', |
| 10 'third_party/double-conversion/src/double-conversion.gypi', | 10 'third_party/double-conversion/src/double-conversion.gypi', |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 'python', | 94 'python', |
| 95 '-u', # Make standard I/O unbuffered. | 95 '-u', # Make standard I/O unbuffered. |
| 96 'tools/make_version.py', | 96 'tools/make_version.py', |
| 97 '--output', '<(version_cc_file)', | 97 '--output', '<(version_cc_file)', |
| 98 '--input', '<(version_in_cc_file)', | 98 '--input', '<(version_in_cc_file)', |
| 99 '--version', '../tools/VERSION', | 99 '--version', '../tools/VERSION', |
| 100 ], | 100 ], |
| 101 }, | 101 }, |
| 102 ], | 102 ], |
| 103 }, | 103 }, |
| 104 { |
| 105 'target_name': 'runtime_packages', |
| 106 'type': 'none', |
| 107 'dependencies': [ |
| 108 '../pkg/pkg.gyp:pkg_packages', |
| 109 ], |
| 110 }, |
| 104 ], | 111 ], |
| 105 } | 112 } |
| OLD | NEW |