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