| 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 import("runtime_args.gni") | 5 import("runtime_args.gni") |
| 6 | 6 |
| 7 declare_args() { | 7 declare_args() { |
| 8 # Instead of using is_debug, we introduce a different flag for specifying a | 8 # Instead of using is_debug, we introduce a different flag for specifying a |
| 9 # Debug build of Dart so that clients can still use a Release build of Dart | 9 # Debug build of Dart so that clients can still use a Release build of Dart |
| 10 # while themselves doing a Debug build. | 10 # while themselves doing a Debug build. |
| (...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 extra_configs = [ | 271 extra_configs = [ |
| 272 ":dart_no_snapshot_config", | 272 ":dart_no_snapshot_config", |
| 273 ":dart_precompiler_config", | 273 ":dart_precompiler_config", |
| 274 ] | 274 ] |
| 275 extra_deps = [ | 275 extra_deps = [ |
| 276 "vm:libdart_lib_nosnapshot_with_precompiler", | 276 "vm:libdart_lib_nosnapshot_with_precompiler", |
| 277 "vm:libdart_vm_nosnapshot_with_precompiler", | 277 "vm:libdart_vm_nosnapshot_with_precompiler", |
| 278 ] | 278 ] |
| 279 } | 279 } |
| 280 | 280 |
| 281 libdart_library("libdart_with_precompiler") { |
| 282 extra_configs = [ ":dart_precompiler_config" ] |
| 283 extra_deps = [ |
| 284 "vm:libdart_lib_with_precompiler", |
| 285 "vm:libdart_vm_with_precompiler", |
| 286 ] |
| 287 } |
| 288 |
| 281 action("generate_version_cc_file") { | 289 action("generate_version_cc_file") { |
| 282 deps = [ | 290 deps = [ |
| 283 ":libdart_dependency_helper", | 291 ":libdart_dependency_helper", |
| 284 ] | 292 ] |
| 285 inputs = [ | 293 inputs = [ |
| 286 "../tools/utils.py", | 294 "../tools/utils.py", |
| 287 "../tools/print_version.py", | 295 "../tools/print_version.py", |
| 288 "../tools/VERSION", | 296 "../tools/VERSION", |
| 289 "vm/version_in.cc", | 297 "vm/version_in.cc", |
| 290 ] | 298 ] |
| (...skipping 21 matching lines...) Expand all Loading... |
| 312 "third_party/double-conversion/src:libdouble_conversion", | 320 "third_party/double-conversion/src:libdouble_conversion", |
| 313 "vm:libdart_lib", | 321 "vm:libdart_lib", |
| 314 "vm:libdart_lib_nosnapshot", | 322 "vm:libdart_lib_nosnapshot", |
| 315 "vm:libdart_vm", | 323 "vm:libdart_vm", |
| 316 "vm:libdart_vm_nosnapshot", | 324 "vm:libdart_vm_nosnapshot", |
| 317 ] | 325 ] |
| 318 sources = [ | 326 sources = [ |
| 319 "vm/libdart_dependency_helper.cc", | 327 "vm/libdart_dependency_helper.cc", |
| 320 ] | 328 ] |
| 321 } | 329 } |
| OLD | NEW |