| 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 '--input', '<(version_in_cc_file)', | 91 '--input', '<(version_in_cc_file)', |
| 92 ], | 92 ], |
| 93 }, | 93 }, |
| 94 ], | 94 ], |
| 95 }, | 95 }, |
| 96 { | 96 { |
| 97 'target_name': 'libdart_dependency_helper', | 97 'target_name': 'libdart_dependency_helper', |
| 98 'type': 'executable', | 98 'type': 'executable', |
| 99 'toolsets':['target','host'], | 99 'toolsets':['target','host'], |
| 100 # The dependencies here are the union of the dependencies of libdart and | 100 # The dependencies here are the union of the dependencies of libdart and |
| 101 # libdart_withcore. | 101 # libdart_withcore. |
| 102 'dependencies': [ | 102 'dependencies': [ |
| 103 'libdart_lib_withcore', | 103 'libdart_lib_withcore', |
| 104 'libdart_lib', | 104 'libdart_lib', |
| 105 'libdart_vm', | 105 'libdart_vm', |
| 106 'libjscre', | 106 'libjscre', |
| 107 'libdouble_conversion', | 107 'libdouble_conversion', |
| 108 ], | 108 ], |
| 109 'sources': [ | 109 'sources': [ |
| 110 'vm/libdart_dependency_helper.cc', | 110 'vm/libdart_dependency_helper.cc', |
| 111 ], | 111 ], |
| 112 'product_dir':'<(PRODUCT_DIR)/<(_toolset)' | |
| 113 }, | 112 }, |
| 114 { | 113 { |
| 115 'target_name': 'runtime_packages', | 114 'target_name': 'runtime_packages', |
| 116 'type': 'none', | 115 'type': 'none', |
| 117 'dependencies': [ | 116 'dependencies': [ |
| 118 '../pkg/pkg.gyp:pkg_packages', | 117 '../pkg/pkg.gyp:pkg_packages', |
| 119 ], | 118 ], |
| 120 }, | 119 }, |
| 121 ], | 120 ], |
| 122 } | 121 } |
| OLD | NEW |