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