| 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 19 matching lines...) Expand all Loading... |
| 30 '.', | 30 '.', |
| 31 ], | 31 ], |
| 32 'sources': [ | 32 'sources': [ |
| 33 'include/dart_api.h', | 33 'include/dart_api.h', |
| 34 'include/dart_debugger_api.h', | 34 'include/dart_debugger_api.h', |
| 35 'vm/dart_api_impl.cc', | 35 'vm/dart_api_impl.cc', |
| 36 'vm/debugger_api_impl.cc', | 36 'vm/debugger_api_impl.cc', |
| 37 'vm/version.h', | 37 'vm/version.h', |
| 38 '<(version_cc_file)', | 38 '<(version_cc_file)', |
| 39 ], | 39 ], |
| 40 'direct_dependent_settings': { | |
| 41 'include_dirs': [ | |
| 42 'include', | |
| 43 ], | |
| 44 }, | |
| 45 }, | |
| 46 { | |
| 47 # The Dart API is exported from this library to dynamically loaded shared | |
| 48 # libraries. | |
| 49 'target_name': 'libdart_export', | |
| 50 'type': 'static_library', | |
| 51 'dependencies': [ | |
| 52 'libdart_lib', | |
| 53 'libdart_vm', | |
| 54 'libjscre', | |
| 55 'libdouble_conversion', | |
| 56 'generate_version_cc_file', | |
| 57 ], | |
| 58 'include_dirs': [ | |
| 59 '.', | |
| 60 ], | |
| 61 'sources': [ | |
| 62 'include/dart_api.h', | |
| 63 'include/dart_debugger_api.h', | |
| 64 'vm/dart_api_impl.cc', | |
| 65 'vm/debugger_api_impl.cc', | |
| 66 'vm/version.h', | |
| 67 '<(version_cc_file)', | |
| 68 ], | |
| 69 'defines': [ | 40 'defines': [ |
| 70 # The only effect of DART_SHARED_LIB is to export the Dart API entries. | 41 # The only effect of DART_SHARED_LIB is to export the Dart API entries. |
| 71 'DART_SHARED_LIB', | 42 'DART_SHARED_LIB', |
| 72 ], | 43 ], |
| 73 'direct_dependent_settings': { | 44 'direct_dependent_settings': { |
| 74 'include_dirs': [ | 45 'include_dirs': [ |
| 75 'include', | 46 'include', |
| 76 ], | 47 ], |
| 77 }, | 48 }, |
| 78 }, | 49 }, |
| (...skipping 24 matching lines...) Expand all Loading... |
| 103 }, | 74 }, |
| 104 { | 75 { |
| 105 'target_name': 'runtime_packages', | 76 'target_name': 'runtime_packages', |
| 106 'type': 'none', | 77 'type': 'none', |
| 107 'dependencies': [ | 78 'dependencies': [ |
| 108 '../pkg/pkg.gyp:pkg_packages', | 79 '../pkg/pkg.gyp:pkg_packages', |
| 109 ], | 80 ], |
| 110 }, | 81 }, |
| 111 ], | 82 ], |
| 112 } | 83 } |
| OLD | NEW |