| 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 'observatory/observatory.gypi', | 9 'observatory/observatory.gypi', |
| 10 'bin/bin.gypi', | 10 'bin/bin.gypi', |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 'dependencies': ['<@(libdart_deps)'], | 179 'dependencies': ['<@(libdart_deps)'], |
| 180 'sources': [ | 180 'sources': [ |
| 181 'vm/libdart_dependency_helper.cc', | 181 'vm/libdart_dependency_helper.cc', |
| 182 ], | 182 ], |
| 183 }, | 183 }, |
| 184 # Targets coming from dart/dart.gyp. | 184 # Targets coming from dart/dart.gyp. |
| 185 { | 185 { |
| 186 'target_name': 'runtime_all', | 186 'target_name': 'runtime_all', |
| 187 'type': 'none', | 187 'type': 'none', |
| 188 'dependencies': [ | 188 'dependencies': [ |
| 189 '../pkg/pkg.gyp:pkg_packages', | |
| 190 'sample_extension', | 189 'sample_extension', |
| 191 ], | 190 ], |
| 192 }, | 191 }, |
| 193 { | 192 { |
| 194 'target_name': 'sample_extension', | 193 'target_name': 'sample_extension', |
| 195 'type': 'shared_library', | 194 'type': 'shared_library', |
| 196 'dependencies': [ | 195 'dependencies': [ |
| 197 'dart', | 196 'dart', |
| 198 ], | 197 ], |
| 199 'include_dirs': [ | 198 'include_dirs': [ |
| (...skipping 25 matching lines...) Expand all Loading... |
| 225 }], | 224 }], |
| 226 ['OS=="linux"', { | 225 ['OS=="linux"', { |
| 227 'cflags': [ | 226 'cflags': [ |
| 228 '-fPIC', | 227 '-fPIC', |
| 229 ], | 228 ], |
| 230 }], | 229 }], |
| 231 ], | 230 ], |
| 232 }, | 231 }, |
| 233 ], | 232 ], |
| 234 } | 233 } |
| OLD | NEW |