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_withcore', 'libdart_lib', 'libdart_vm', | 18 'libdart_deps': ['libdart_lib_nosnapshot', 'libdart_lib', |
| 19 'libdart_vm_nosnapshot', 'libdart_vm', |
19 'libdouble_conversion',], | 20 'libdouble_conversion',], |
20 }, | 21 }, |
21 'targets': [ | 22 'targets': [ |
22 { | 23 { |
23 'target_name': 'libdart', | 24 'target_name': 'libdart', |
24 'type': 'static_library', | 25 'type': 'static_library', |
25 'dependencies': [ | 26 'dependencies': [ |
26 'libdart_lib', | 27 'libdart_lib', |
27 'libdart_vm', | 28 'libdart_vm', |
28 'libdouble_conversion', | 29 'libdouble_conversion', |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 '--input', '<(version_in_cc_file)', | 87 '--input', '<(version_in_cc_file)', |
87 ], | 88 ], |
88 }, | 89 }, |
89 ], | 90 ], |
90 }, | 91 }, |
91 { | 92 { |
92 'target_name': 'libdart_dependency_helper.target', | 93 'target_name': 'libdart_dependency_helper.target', |
93 'type': 'executable', | 94 'type': 'executable', |
94 'toolsets':['target'], | 95 'toolsets':['target'], |
95 # The dependencies here are the union of the dependencies of libdart and | 96 # The dependencies here are the union of the dependencies of libdart and |
96 # libdart_withcore. | 97 # libdart_nosnapshot. |
97 'dependencies': ['<@(libdart_deps)'], | 98 'dependencies': ['<@(libdart_deps)'], |
98 'sources': [ | 99 'sources': [ |
99 'vm/libdart_dependency_helper.cc', | 100 'vm/libdart_dependency_helper.cc', |
100 ], | 101 ], |
101 }, | 102 }, |
102 { | 103 { |
103 'target_name': 'libdart_dependency_helper.host', | 104 'target_name': 'libdart_dependency_helper.host', |
104 'type': 'executable', | 105 'type': 'executable', |
105 'toolsets':['host'], | 106 'toolsets':['host'], |
106 # The dependencies here are the union of the dependencies of libdart and | 107 # The dependencies here are the union of the dependencies of libdart and |
107 # libdart_withcore. | 108 # libdart_nosnapshot. |
108 'dependencies': ['<@(libdart_deps)'], | 109 'dependencies': ['<@(libdart_deps)'], |
109 'sources': [ | 110 'sources': [ |
110 'vm/libdart_dependency_helper.cc', | 111 'vm/libdart_dependency_helper.cc', |
111 ], | 112 ], |
112 }, | 113 }, |
113 # Targets coming from dart/dart.gyp. | 114 # Targets coming from dart/dart.gyp. |
114 { | 115 { |
115 'target_name': 'runtime_all', | 116 'target_name': 'runtime_all', |
116 'type': 'none', | 117 'type': 'none', |
117 'dependencies': [ | 118 'dependencies': [ |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 }], | 155 }], |
155 ['OS=="linux"', { | 156 ['OS=="linux"', { |
156 'cflags': [ | 157 'cflags': [ |
157 '-fPIC', | 158 '-fPIC', |
158 ], | 159 ], |
159 }], | 160 }], |
160 ], | 161 ], |
161 }, | 162 }, |
162 ], | 163 ], |
163 } | 164 } |
OLD | NEW |