| 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 16 matching lines...) Expand all Loading... |
| 27 'libdart_lib', | 27 'libdart_lib', |
| 28 'libdart_vm', | 28 'libdart_vm', |
| 29 'libdouble_conversion', | 29 'libdouble_conversion', |
| 30 'generate_version_cc_file#host', | 30 'generate_version_cc_file#host', |
| 31 ], | 31 ], |
| 32 'include_dirs': [ | 32 'include_dirs': [ |
| 33 '.', | 33 '.', |
| 34 ], | 34 ], |
| 35 'sources': [ | 35 'sources': [ |
| 36 'include/dart_api.h', | 36 'include/dart_api.h', |
| 37 'include/dart_debugger_api.h', | |
| 38 'include/dart_mirrors_api.h', | 37 'include/dart_mirrors_api.h', |
| 39 'include/dart_native_api.h', | 38 'include/dart_native_api.h', |
| 39 'include/dart_tools_api.h', |
| 40 'vm/dart_api_impl.cc', | 40 'vm/dart_api_impl.cc', |
| 41 'vm/debugger_api_impl.cc', | 41 'vm/debugger_api_impl.cc', |
| 42 'vm/mirrors_api_impl.cc', | 42 'vm/mirrors_api_impl.cc', |
| 43 'vm/native_api_impl.cc', | 43 'vm/native_api_impl.cc', |
| 44 'vm/version.h', | 44 'vm/version.h', |
| 45 '<(version_cc_file)', | 45 '<(version_cc_file)', |
| 46 ], | 46 ], |
| 47 'defines': [ | 47 'defines': [ |
| 48 # The only effect of DART_SHARED_LIB is to export the Dart API entries. | 48 # The only effect of DART_SHARED_LIB is to export the Dart API entries. |
| 49 'DART_SHARED_LIB', | 49 'DART_SHARED_LIB', |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 }], | 155 }], |
| 156 ['OS=="linux"', { | 156 ['OS=="linux"', { |
| 157 'cflags': [ | 157 'cflags': [ |
| 158 '-fPIC', | 158 '-fPIC', |
| 159 ], | 159 ], |
| 160 }], | 160 }], |
| 161 ], | 161 ], |
| 162 }, | 162 }, |
| 163 ], | 163 ], |
| 164 } | 164 } |
| OLD | NEW |