OLD | NEW |
1 # Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2014, 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 config("libdart_vm_config") { | 5 config("libdart_vm_config") { |
6 libs = [ | 6 libs = [ |
7 "dl", | 7 "dl", |
8 ] | 8 ] |
9 | 9 |
10 if (!is_android) { | 10 if (!is_android) { |
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 sources = [ | 190 sources = [ |
191 ["async", "async"], | 191 ["async", "async"], |
192 ["core", "core"], | 192 ["core", "core"], |
193 ["collection", "collection"], | 193 ["collection", "collection"], |
194 ["convert", "convert"], | 194 ["convert", "convert"], |
195 ["developer", "developer"], | 195 ["developer", "developer"], |
196 ["_internal", "internal"], | 196 ["_internal", "internal"], |
197 ["isolate", "isolate"], | 197 ["isolate", "isolate"], |
198 ["math", "math"], | 198 ["math", "math"], |
199 ["mirrors", "mirrors"], | 199 ["mirrors", "mirrors"], |
200 ["profiler", "profiler"], | |
201 ["typed_data", "typed_data"], | 200 ["typed_data", "typed_data"], |
202 ] | 201 ] |
203 } | 202 } |
204 | 203 |
205 | 204 |
206 action("generate_service_cc_file") { | 205 action("generate_service_cc_file") { |
207 visibility = [ ":*" ] # Only targets in this file can see this. | 206 visibility = [ ":*" ] # Only targets in this file can see this. |
208 script = "../tools/create_resources.py" | 207 script = "../tools/create_resources.py" |
209 sources = [ | 208 sources = [ |
210 "service/client.dart", | 209 "service/client.dart", |
211 "service/constants.dart", | 210 "service/constants.dart", |
212 "service/message.dart", | 211 "service/message.dart", |
213 "service/message_router.dart", | 212 "service/message_router.dart", |
214 "service/running_isolate.dart", | 213 "service/running_isolate.dart", |
215 "service/running_isolates.dart", | 214 "service/running_isolates.dart", |
216 "service/vmservice.dart", | 215 "service/vmservice.dart", |
217 ] | 216 ] |
218 | 217 |
219 output = "$target_gen_dir/service_gen.cc" | 218 output = "$target_gen_dir/service_gen.cc" |
220 outputs = [ output, ] | 219 outputs = [ output, ] |
221 | 220 |
222 args = [ | 221 args = [ |
223 "--output", rebase_path(output, root_build_dir), | 222 "--output", rebase_path(output, root_build_dir), |
224 "--outer_namespace", "dart", | 223 "--outer_namespace", "dart", |
225 "--table_name", "service", | 224 "--table_name", "service", |
226 "--root_prefix", rebase_path("service/", root_build_dir)] + | 225 "--root_prefix", rebase_path("service/", root_build_dir)] + |
227 rebase_path(sources, root_build_dir) | 226 rebase_path(sources, root_build_dir) |
228 } | 227 } |
OLD | NEW |