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:process_test", | 28 "runtime/bin:process_test", |
29 "runtime/bin:run_vm_tests", | 29 "runtime/bin:run_vm_tests", |
30 "runtime/bin:sample_extension", | 30 "runtime/bin:sample_extension", |
31 "runtime/bin:test_extension", | 31 "runtime/bin:test_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_bootstrap($host_toolchain)", | 38 "runtime/bin:dart_bootstrap($host_toolchain)", |
38 "runtime/bin:dart_precompiled_runtime", | 39 "runtime/bin:dart_precompiled_runtime", |
| 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_bootstrap($host_toolchain)", | 47 "runtime/bin:dart_bootstrap($host_toolchain)", |
46 "runtime/bin:dart_noopt", | 48 "runtime/bin:dart_noopt", |
47 "runtime/bin:process_test", | 49 "runtime/bin:process_test", |
48 "runtime/bin:run_vm_tests", | 50 "runtime/bin:run_vm_tests", |
49 "runtime/bin:sample_extension", | 51 "runtime/bin:sample_extension", |
50 "runtime/bin:test_extension", | 52 "runtime/bin:test_extension", |
| 53 "runtime/vm:patched_sdk", |
51 ] | 54 ] |
52 } | 55 } |
53 | 56 |
54 action("create_sdk") { | 57 action("create_sdk") { |
55 deps = [ | 58 deps = [ |
56 "runtime/bin:dart", | 59 "runtime/bin:dart", |
57 "utils/analysis_server", | 60 "utils/analysis_server", |
58 "utils/compiler:dart2js", | 61 "utils/compiler:dart2js", |
59 "utils/compiler:utils_wrapper", | 62 "utils/compiler:utils_wrapper", |
60 "utils/dartanalyzer:generate_dartanalyzer_snapshot", | 63 "utils/dartanalyzer:generate_dartanalyzer_snapshot", |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 deps = [ | 158 deps = [ |
156 ":create_sdk", | 159 ":create_sdk", |
157 ] | 160 ] |
158 } | 161 } |
159 | 162 |
160 group("samples") { | 163 group("samples") { |
161 deps = [ | 164 deps = [ |
162 "runtime/bin:sample_extension", | 165 "runtime/bin:sample_extension", |
163 ] | 166 ] |
164 } | 167 } |
OLD | NEW |