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 declare_args() { | 5 declare_args() { |
6 # Instead of using is_debug, we introduce a different flag for specifying a | 6 # Instead of using is_debug, we introduce a different flag for specifying a |
7 # Debug build of Dart so that clients can still use a Release build of Dart | 7 # Debug build of Dart so that clients can still use a Release build of Dart |
8 # while themselves doing a Debug build. | 8 # while themselves doing a Debug build. |
9 dart_debug = false | 9 dart_debug = false |
10 | 10 |
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 } | 219 } |
220 | 220 |
221 libdart_library("libdart") { | 221 libdart_library("libdart") { |
222 extra_configs = [ ":dart_maybe_precompiled_runtime_config" ] | 222 extra_configs = [ ":dart_maybe_precompiled_runtime_config" ] |
223 extra_deps = [ | 223 extra_deps = [ |
224 "vm:libdart_lib", | 224 "vm:libdart_lib", |
225 "vm:libdart_vm", | 225 "vm:libdart_vm", |
226 ] | 226 ] |
227 } | 227 } |
228 | 228 |
229 libdart_library("libdart_noopt") { | |
230 extra_configs = [ | |
231 ":dart_maybe_precompiled_runtime_config", | |
232 ":dart_precompiler_config", | |
233 ] | |
234 extra_deps = [ | |
235 "vm:libdart_lib", | |
236 "vm:libdart_vm_noopt", | |
237 ] | |
238 } | |
239 | |
240 libdart_library("libdart_precompiled_runtime") { | 229 libdart_library("libdart_precompiled_runtime") { |
241 extra_configs = [ ":dart_precompiled_runtime_config" ] | 230 extra_configs = [ ":dart_precompiled_runtime_config" ] |
242 extra_deps = [ | 231 extra_deps = [ |
243 "vm:libdart_lib_precompiled_runtime", | 232 "vm:libdart_lib_precompiled_runtime", |
244 "vm:libdart_vm_precompiled_runtime", | 233 "vm:libdart_vm_precompiled_runtime", |
245 ] | 234 ] |
246 } | 235 } |
247 | 236 |
248 libdart_library("libdart_nosnapshot") { | 237 libdart_library("libdart_nosnapshot") { |
249 extra_configs = [ | 238 extra_configs = [ |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
301 "third_party/double-conversion/src:libdouble_conversion", | 290 "third_party/double-conversion/src:libdouble_conversion", |
302 "vm:libdart_lib", | 291 "vm:libdart_lib", |
303 "vm:libdart_lib_nosnapshot", | 292 "vm:libdart_lib_nosnapshot", |
304 "vm:libdart_vm", | 293 "vm:libdart_vm", |
305 "vm:libdart_vm_nosnapshot", | 294 "vm:libdart_vm_nosnapshot", |
306 ] | 295 ] |
307 sources = [ | 296 sources = [ |
308 "vm/libdart_dependency_helper.cc", | 297 "vm/libdart_dependency_helper.cc", |
309 ] | 298 ] |
310 } | 299 } |
OLD | NEW |