| OLD | NEW |
| 1 # Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2016, 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 # This target will be built if no target is specified when invoking ninja. | 5 # This target will be built if no target is specified when invoking ninja. |
| 6 group("default") { | 6 group("default") { |
| 7 if (defined(is_fuchsia) && (is_fuchsia || is_fuchsia_host)) { | 7 if (defined(is_fuchsia) && (is_fuchsia || is_fuchsia_host)) { |
| 8 # Fuchsia has run_vm_tests marked testonly. | 8 # Fuchsia has run_vm_tests marked testonly. |
| 9 testonly = true | 9 testonly = true |
| 10 } | 10 } |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 "runtime/bin:dart_bootstrap($host_toolchain)", | 39 "runtime/bin:dart_bootstrap($host_toolchain)", |
| 40 "runtime/bin:process_test", | 40 "runtime/bin:process_test", |
| 41 "runtime/bin:run_vm_tests", | 41 "runtime/bin:run_vm_tests", |
| 42 "runtime/bin:sample_extension", | 42 "runtime/bin:sample_extension", |
| 43 "runtime/bin:test_extension", | 43 "runtime/bin:test_extension", |
| 44 "runtime/vm:patched_sdk", | 44 "runtime/vm:patched_sdk", |
| 45 ] | 45 ] |
| 46 } | 46 } |
| 47 | 47 |
| 48 group("runtime_kernel") { | 48 group("runtime_kernel") { |
| 49 if (defined(is_fuchsia) && (is_fuchsia || is_fuchsia_host)) { |
| 50 # Fuchsia has run_vm_tests marked testonly. |
| 51 testonly = true |
| 52 } |
| 49 deps = [ | 53 deps = [ |
| 50 ":runtime", | 54 ":runtime", |
| 51 | 55 |
| 52 # TODO(rmacnak): Link this into 'dart' | 56 # TODO(rmacnak): Link this into 'dart' |
| 53 "utils/kernel-service:kernel-service", | 57 "utils/kernel-service:kernel-service", |
| 54 ] | 58 ] |
| 55 } | 59 } |
| 56 | 60 |
| 57 group("runtime_precompiled") { | 61 group("runtime_precompiled") { |
| 58 deps = [ | 62 deps = [ |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 245 rebase_path(input), | 249 rebase_path(input), |
| 246 "--output-file", | 250 "--output-file", |
| 247 rebase_path(output), | 251 rebase_path(output), |
| 248 "--build-id-map", | 252 "--build-id-map", |
| 249 rebase_path("$target_gen_dir/build_id_map"), | 253 rebase_path("$target_gen_dir/build_id_map"), |
| 250 "--compress", | 254 "--compress", |
| 251 ] | 255 ] |
| 252 } | 256 } |
| 253 } | 257 } |
| 254 } | 258 } |
| OLD | NEW |