| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 'dependencies': [ | 53 'dependencies': [ |
| 54 'libdart_dependency_helper', | 54 'libdart_dependency_helper', |
| 55 ], | 55 ], |
| 56 'actions': [ | 56 'actions': [ |
| 57 { | 57 { |
| 58 'action_name': 'generate_version_cc', | 58 'action_name': 'generate_version_cc', |
| 59 'inputs': [ | 59 'inputs': [ |
| 60 'tools/make_version.py', | 60 'tools/make_version.py', |
| 61 '../tools/VERSION', | 61 '../tools/VERSION', |
| 62 '<(version_in_cc_file)', | 62 '<(version_in_cc_file)', |
| 63 # We need to list the libdart_dependency_helper executable here | 63 # Depend on libdart_dependency_helper to track the libraries it |
| 64 # otherwise the action doesn't get executed if any of | 64 # depends on. |
| 65 # libdart/libdart_withcore changes | |
| 66 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)libdart_dependency_helper<(EXECU
TABLE_SUFFIX)', | 65 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)libdart_dependency_helper<(EXECU
TABLE_SUFFIX)', |
| 67 ], | 66 ], |
| 68 'outputs': [ | 67 'outputs': [ |
| 69 '<(version_cc_file)', | 68 '<(version_cc_file)', |
| 70 ], | 69 ], |
| 71 'action': [ | 70 'action': [ |
| 72 'python', | 71 'python', |
| 73 '-u', # Make standard I/O unbuffered. | 72 '-u', # Make standard I/O unbuffered. |
| 74 'tools/make_version.py', | 73 'tools/make_version.py', |
| 75 '--output', '<(version_cc_file)', | 74 '--output', '<(version_cc_file)', |
| (...skipping 21 matching lines...) Expand all Loading... |
| 97 }, | 96 }, |
| 98 { | 97 { |
| 99 'target_name': 'runtime_packages', | 98 'target_name': 'runtime_packages', |
| 100 'type': 'none', | 99 'type': 'none', |
| 101 'dependencies': [ | 100 'dependencies': [ |
| 102 '../pkg/pkg.gyp:pkg_packages', | 101 '../pkg/pkg.gyp:pkg_packages', |
| 103 ], | 102 ], |
| 104 }, | 103 }, |
| 105 ], | 104 ], |
| 106 } | 105 } |
| OLD | NEW |