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 deps = [ | 7 deps = [ |
8 ":runtime", | 8 ":runtime", |
9 ] | 9 ] |
10 } | 10 } |
(...skipping 11 matching lines...) Expand all Loading... |
22 } | 22 } |
23 | 23 |
24 group("runtime") { | 24 group("runtime") { |
25 deps = [ | 25 deps = [ |
26 "runtime/bin:dart", | 26 "runtime/bin:dart", |
27 "runtime/bin:dart_bootstrap($host_toolchain)", | 27 "runtime/bin:dart_bootstrap($host_toolchain)", |
28 "runtime/bin:run_vm_tests", | 28 "runtime/bin:run_vm_tests", |
29 "runtime/bin:process_test", | 29 "runtime/bin:process_test", |
30 "runtime/bin:test_extension", | 30 "runtime/bin:test_extension", |
31 "runtime/bin:sample_extension", | 31 "runtime/bin:sample_extension", |
| 32 "runtime/vm:patched_sdk", |
32 ] | 33 ] |
33 } | 34 } |
34 | 35 |
35 group("runtime_precompiled") { | 36 group("runtime_precompiled") { |
36 deps = [ | 37 deps = [ |
37 "runtime/bin:dart_precompiled_runtime", | 38 "runtime/bin:dart_precompiled_runtime", |
38 "runtime/bin:dart_bootstrap($host_toolchain)", | 39 "runtime/bin:dart_bootstrap($host_toolchain)", |
| 40 "runtime/vm:patched_sdk", |
39 ] | 41 ] |
40 } | 42 } |
41 | 43 |
42 group("runtime_and_noopt") { | 44 group("runtime_and_noopt") { |
43 deps = [ | 45 deps = [ |
44 "runtime/bin:dart", | 46 "runtime/bin:dart", |
45 "runtime/bin:dart_noopt", | 47 "runtime/bin:dart_noopt", |
46 "runtime/bin:dart_bootstrap($host_toolchain)", | 48 "runtime/bin:dart_bootstrap($host_toolchain)", |
47 "runtime/bin:run_vm_tests", | 49 "runtime/bin:run_vm_tests", |
48 "runtime/bin:process_test", | 50 "runtime/bin:process_test", |
49 "runtime/bin:test_extension", | 51 "runtime/bin:test_extension", |
50 "runtime/bin:sample_extension", | 52 "runtime/bin:sample_extension", |
| 53 "runtime/vm:patched_sdk", |
51 ] | 54 ] |
52 } | 55 } |
53 | 56 |
54 | 57 |
55 action("create_sdk") { | 58 action("create_sdk") { |
56 deps = [ | 59 deps = [ |
57 "runtime/bin:dart", | 60 "runtime/bin:dart", |
58 "utils/analysis_server", | 61 "utils/analysis_server", |
59 "utils/compiler:dart2js", | 62 "utils/compiler:dart2js", |
60 "utils/dartanalyzer:generate_dartanalyzer_snapshot", | 63 "utils/dartanalyzer:generate_dartanalyzer_snapshot", |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 deps = [ | 151 deps = [ |
149 ":create_sdk" | 152 ":create_sdk" |
150 ] | 153 ] |
151 } | 154 } |
152 | 155 |
153 group("samples") { | 156 group("samples") { |
154 deps = [ | 157 deps = [ |
155 "runtime/bin:sample_extension" | 158 "runtime/bin:sample_extension" |
156 ] | 159 ] |
157 } | 160 } |
OLD | NEW |