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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
230 libdart_library("libdart") { | 230 libdart_library("libdart") { |
231 extra_configs = [ | 231 extra_configs = [ |
232 ":dart_maybe_precompiled_runtime_config" | 232 ":dart_maybe_precompiled_runtime_config" |
233 ] | 233 ] |
234 extra_deps = [ | 234 extra_deps = [ |
235 "vm:libdart_lib", | 235 "vm:libdart_lib", |
236 "vm:libdart_vm", | 236 "vm:libdart_vm", |
237 ] | 237 ] |
238 } | 238 } |
239 | 239 |
| 240 libdart_library("libdart_noopt") { |
| 241 extra_configs = [ |
| 242 ":dart_maybe_precompiled_runtime_config", |
| 243 ":dart_precompiler_config", |
| 244 ] |
| 245 extra_deps = [ |
| 246 "vm:libdart_lib", |
| 247 "vm:libdart_vm_noopt", |
| 248 ] |
| 249 } |
| 250 |
240 libdart_library("libdart_precompiled_runtime") { | 251 libdart_library("libdart_precompiled_runtime") { |
241 extra_configs = [ | 252 extra_configs = [ |
242 ":dart_precompiled_runtime_config" | 253 ":dart_precompiled_runtime_config" |
243 ] | 254 ] |
244 extra_deps = [ | 255 extra_deps = [ |
245 "vm:libdart_lib_precompiled_runtime", | 256 "vm:libdart_lib_precompiled_runtime", |
246 "vm:libdart_vm_precompiled_runtime", | 257 "vm:libdart_vm_precompiled_runtime", |
247 ] | 258 ] |
248 } | 259 } |
249 | 260 |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
309 "vm:libdart_lib_nosnapshot", | 320 "vm:libdart_lib_nosnapshot", |
310 "vm:libdart_lib", | 321 "vm:libdart_lib", |
311 "vm:libdart_vm", | 322 "vm:libdart_vm", |
312 "vm:libdart_platform", | 323 "vm:libdart_platform", |
313 "third_party/double-conversion/src:libdouble_conversion", | 324 "third_party/double-conversion/src:libdouble_conversion", |
314 ] | 325 ] |
315 sources = [ | 326 sources = [ |
316 "vm/libdart_dependency_helper.cc", | 327 "vm/libdart_dependency_helper.cc", |
317 ] | 328 ] |
318 } | 329 } |
OLD | NEW |