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', |
11 'third_party/double-conversion/src/double-conversion.gypi', | 11 'third_party/double-conversion/src/double-conversion.gypi', |
12 ], | 12 ], |
13 'variables': { | 13 'variables': { |
14 'gen_source_dir': '<(SHARED_INTERMEDIATE_DIR)', | 14 'gen_source_dir': '<(SHARED_INTERMEDIATE_DIR)', |
15 'version_in_cc_file': 'vm/version_in.cc', | 15 'version_in_cc_file': 'vm/version_in.cc', |
16 'version_cc_file': '<(gen_source_dir)/version.cc', | 16 'version_cc_file': '<(gen_source_dir)/version.cc', |
17 | 17 |
18 'libdart_deps': ['libdart_lib_nosnapshot', 'libdart_lib', | 18 'libdart_deps': ['libdart_lib_nosnapshot', 'libdart_lib', |
19 'libdart_vm_nosnapshot', 'libdart_vm', | 19 'libdart_vm_nosnapshot', 'libdart_vm', |
20 'libdart_vm_noopt', | |
21 'libdart_vm_precompiled_runtime', | |
22 'libdouble_conversion',], | 20 'libdouble_conversion',], |
23 }, | 21 }, |
24 'targets': [ | 22 'targets': [ |
25 { | 23 { |
26 'target_name': 'libdart', | 24 'target_name': 'libdart', |
27 'type': 'static_library', | 25 'type': 'static_library', |
28 'dependencies': [ | 26 'dependencies': [ |
29 'libdart_lib', | 27 'libdart_lib', |
30 'libdart_vm', | 28 'libdart_vm', |
31 'libdouble_conversion', | 29 'libdouble_conversion', |
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
227 }], | 225 }], |
228 ['OS=="linux"', { | 226 ['OS=="linux"', { |
229 'cflags': [ | 227 'cflags': [ |
230 '-fPIC', | 228 '-fPIC', |
231 ], | 229 ], |
232 }], | 230 }], |
233 ], | 231 ], |
234 }, | 232 }, |
235 ], | 233 ], |
236 } | 234 } |
OLD | NEW |