| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 'dependencies': [ | 72 'dependencies': [ |
| 73 'libdart_dependency_helper.target#target', | 73 'libdart_dependency_helper.target#target', |
| 74 'libdart_dependency_helper.host#host', | 74 'libdart_dependency_helper.host#host', |
| 75 ], | 75 ], |
| 76 'actions': [ | 76 'actions': [ |
| 77 { | 77 { |
| 78 'action_name': 'generate_version_cc', | 78 'action_name': 'generate_version_cc', |
| 79 'inputs': [ | 79 'inputs': [ |
| 80 '../tools/make_version.py', | 80 '../tools/make_version.py', |
| 81 '../tools/utils.py', | 81 '../tools/utils.py', |
| 82 '../tools/version.dart', | 82 '../tools/print_version.py', |
| 83 '../tools/release/version.dart', | |
| 84 '../tools/VERSION', | 83 '../tools/VERSION', |
| 85 '<(version_in_cc_file)', | 84 '<(version_in_cc_file)', |
| 86 # Depend on libdart_dependency_helper to track the libraries it | 85 # Depend on libdart_dependency_helper to track the libraries it |
| 87 # depends on. | 86 # depends on. |
| 88 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)libdart_dependency_helper.target
<(EXECUTABLE_SUFFIX)', | 87 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)libdart_dependency_helper.target
<(EXECUTABLE_SUFFIX)', |
| 89 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)libdart_dependency_helper.host<(
EXECUTABLE_SUFFIX)', | 88 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)libdart_dependency_helper.host<(
EXECUTABLE_SUFFIX)', |
| 90 ], | 89 ], |
| 91 'outputs': [ | 90 'outputs': [ |
| 92 '<(version_cc_file)', | 91 '<(version_cc_file)', |
| 93 ], | 92 ], |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 }, | 124 }, |
| 126 { | 125 { |
| 127 'target_name': 'runtime_packages', | 126 'target_name': 'runtime_packages', |
| 128 'type': 'none', | 127 'type': 'none', |
| 129 'dependencies': [ | 128 'dependencies': [ |
| 130 '../pkg/pkg.gyp:pkg_packages', | 129 '../pkg/pkg.gyp:pkg_packages', |
| 131 ], | 130 ], |
| 132 }, | 131 }, |
| 133 ], | 132 ], |
| 134 } | 133 } |
| OLD | NEW |