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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 ], | 81 ], |
82 "list lines") | 82 "list lines") |
83 | 83 |
84 sdk_bin_files = exec_script("tools/list_files.py", | 84 sdk_bin_files = exec_script("tools/list_files.py", |
85 [ | 85 [ |
86 "", | 86 "", |
87 rebase_path("sdk/bin"), | 87 rebase_path("sdk/bin"), |
88 ], | 88 ], |
89 "list lines") | 89 "list lines") |
90 | 90 |
91 inputs = rebase_path(sdk_lib_files, "", "sdk/lib") + | 91 inputs = sdk_lib_files + preamble_files + sdk_bin_files + |
92 rebase_path(preamble_files, "", "sdk/lib") + | |
93 rebase_path(sdk_bin_files, "", "sdk/bin") + | |
94 [ | 92 [ |
95 "sdk/lib/dart_client.platform", | 93 "sdk/lib/dart_client.platform", |
96 "sdk/lib/dart_server.platform", | 94 "sdk/lib/dart_server.platform", |
97 "sdk/lib/dart_shared.platform", | 95 "sdk/lib/dart_shared.platform", |
98 "$root_gen_dir/dart2js.dart.snapshot", | 96 "$root_gen_dir/dart2js.dart.snapshot", |
99 "$root_gen_dir/utils_wrapper.dart.snapshot", | 97 "$root_gen_dir/utils_wrapper.dart.snapshot", |
100 "$root_gen_dir/pub.dart.snapshot", | 98 "$root_gen_dir/pub.dart.snapshot", |
101 "$root_gen_dir/dartanalyzer.dart.snapshot", | 99 "$root_gen_dir/dartanalyzer.dart.snapshot", |
102 "$root_gen_dir/dartdevc.dart.snapshot", | 100 "$root_gen_dir/dartdevc.dart.snapshot", |
103 "$root_gen_dir/dartfmt.dart.snapshot", | 101 "$root_gen_dir/dartfmt.dart.snapshot", |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 deps = [ | 156 deps = [ |
159 ":create_sdk", | 157 ":create_sdk", |
160 ] | 158 ] |
161 } | 159 } |
162 | 160 |
163 group("samples") { | 161 group("samples") { |
164 deps = [ | 162 deps = [ |
165 "runtime/bin:sample_extension", | 163 "runtime/bin:sample_extension", |
166 ] | 164 ] |
167 } | 165 } |
OLD | NEW |