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', |
(...skipping 17 matching lines...) Expand all Loading... |
28 'include/dart_debugger_api.h', | 28 'include/dart_debugger_api.h', |
29 'vm/dart_api_impl.cc', | 29 'vm/dart_api_impl.cc', |
30 'vm/debugger_api_impl.cc', | 30 'vm/debugger_api_impl.cc', |
31 ], | 31 ], |
32 'direct_dependent_settings': { | 32 'direct_dependent_settings': { |
33 'include_dirs': [ | 33 'include_dirs': [ |
34 'include', | 34 'include', |
35 ], | 35 ], |
36 }, | 36 }, |
37 }, | 37 }, |
| 38 { |
| 39 # The Dart API is exported from this library to dynamically loaded shared |
| 40 # libraries. |
| 41 'target_name': 'libdart_export', |
| 42 'type': 'static_library', |
| 43 'dependencies': [ |
| 44 'libdart_lib', |
| 45 'libdart_vm', |
| 46 'libjscre', |
| 47 'libdouble_conversion', |
| 48 ], |
| 49 'include_dirs': [ |
| 50 '.', |
| 51 ], |
| 52 'sources': [ |
| 53 'include/dart_api.h', |
| 54 'include/dart_debugger_api.h', |
| 55 'vm/dart_api_impl.cc', |
| 56 'vm/debugger_api_impl.cc', |
| 57 ], |
| 58 'defines': [ |
| 59 'DART_SHARED_LIB', |
| 60 ], |
| 61 'direct_dependent_settings': { |
| 62 'include_dirs': [ |
| 63 'include', |
| 64 ], |
| 65 }, |
| 66 }, |
38 ], | 67 ], |
39 } | 68 } |
OLD | NEW |