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