| 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 'vm/vm.gypi', | 7 'vm/vm.gypi', |
| 8 'bin/bin.gypi', | 8 'bin/bin.gypi', |
| 9 'third_party/jscre/jscre.gypi', | 9 'third_party/jscre/jscre.gypi', |
| 10 'tools/gyp/runtime-configurations.gypi', | 10 'tools/gyp/runtime-configurations.gypi', |
| 11 ], | 11 ], |
| 12 'targets': [ | 12 'targets': [ |
| 13 { | 13 { |
| 14 'target_name': 'libdart', | 14 'target_name': 'libdart', |
| 15 'type': 'static_library', | 15 'type': 'static_library', |
| 16 'dependencies': [ | 16 'dependencies': [ |
| 17 'libdart_lib', | 17 'libdart_lib', |
| 18 'libdart_vm', | 18 'libdart_vm', |
| 19 'libjscre', | 19 'libjscre', |
| 20 ], | 20 ], |
| 21 'include_dirs': [ | 21 'include_dirs': [ |
| 22 '.', | 22 '.', |
| 23 ], | 23 ], |
| 24 'sources': [ | 24 'sources': [ |
| 25 'include/dart_api.h', | 25 'include/dart_api.h', |
| 26 'vm/dart_api_impl.cc', | 26 'vm/dart_api_impl.cc', |
| 27 ], | 27 ], |
| 28 }, | 28 }, |
| 29 { |
| 30 'target_name': 'libdart_without_corelib', |
| 31 'type': 'static_library', |
| 32 'dependencies': [ |
| 33 'libdart_nocorelib_lib', |
| 34 'libdart_vm', |
| 35 'libjscre', |
| 36 ], |
| 37 'include_dirs': [ |
| 38 '.', |
| 39 ], |
| 40 'sources': [ |
| 41 'include/dart_api.h', |
| 42 'vm/dart_api_impl.cc', |
| 43 ], |
| 44 }, |
| 29 ], | 45 ], |
| 30 } | 46 } |
| OLD | NEW |