| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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', |
| 50 ], | 50 ], |
| 51 'direct_dependent_settings': { | 51 'direct_dependent_settings': { |
| 52 'include_dirs': [ | 52 'include_dirs': [ |
| 53 'include', | 53 'include', |
| 54 ], | 54 ], |
| 55 }, | 55 }, |
| 56 }, | 56 }, |
| 57 { | 57 { |
| 58 'target_name': 'libdart_noopt', | |
| 59 'type': 'static_library', | |
| 60 'dependencies': [ | |
| 61 'libdart_lib', | |
| 62 'libdart_vm_noopt', | |
| 63 'libdouble_conversion', | |
| 64 'generate_version_cc_file#host', | |
| 65 ], | |
| 66 'include_dirs': [ | |
| 67 '.', | |
| 68 ], | |
| 69 'sources': [ | |
| 70 'include/dart_api.h', | |
| 71 'include/dart_mirrors_api.h', | |
| 72 'include/dart_native_api.h', | |
| 73 'include/dart_tools_api.h', | |
| 74 'vm/dart_api_impl.cc', | |
| 75 'vm/debugger_api_impl.cc', | |
| 76 'vm/mirrors_api_impl.cc', | |
| 77 'vm/native_api_impl.cc', | |
| 78 'vm/version.h', | |
| 79 '<(version_cc_file)', | |
| 80 ], | |
| 81 'defines': [ | |
| 82 # The only effect of DART_SHARED_LIB is to export the Dart API entries. | |
| 83 'DART_SHARED_LIB', | |
| 84 'DART_PRECOMPILER', | |
| 85 ], | |
| 86 'direct_dependent_settings': { | |
| 87 'include_dirs': [ | |
| 88 'include', | |
| 89 ], | |
| 90 }, | |
| 91 }, | |
| 92 { | |
| 93 'target_name': 'libdart_precompiled_runtime', | 58 'target_name': 'libdart_precompiled_runtime', |
| 94 'type': 'static_library', | 59 'type': 'static_library', |
| 95 'dependencies': [ | 60 'dependencies': [ |
| 96 'libdart_lib_precompiled_runtime', | 61 'libdart_lib_precompiled_runtime', |
| 97 'libdart_vm_precompiled_runtime', | 62 'libdart_vm_precompiled_runtime', |
| 98 'libdouble_conversion', | 63 'libdouble_conversion', |
| 99 'generate_version_cc_file#host', | 64 'generate_version_cc_file#host', |
| 100 ], | 65 ], |
| 101 'include_dirs': [ | 66 'include_dirs': [ |
| 102 '.', | 67 '.', |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 }], | 189 }], |
| 225 ['OS=="linux"', { | 190 ['OS=="linux"', { |
| 226 'cflags': [ | 191 'cflags': [ |
| 227 '-fPIC', | 192 '-fPIC', |
| 228 ], | 193 ], |
| 229 }], | 194 }], |
| 230 ], | 195 ], |
| 231 }, | 196 }, |
| 232 ], | 197 ], |
| 233 } | 198 } |
| OLD | NEW |