| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 "utils/compiler:dart2js", | 59 "utils/compiler:dart2js", |
| 60 "utils/dartanalyzer:generate_dartanalyzer_snapshot", | 60 "utils/dartanalyzer:generate_dartanalyzer_snapshot", |
| 61 "utils/dartanalyzer:generate_summary_spec", | 61 "utils/dartanalyzer:generate_summary_spec", |
| 62 "utils/dartanalyzer:generate_summary_strong", | 62 "utils/dartanalyzer:generate_summary_strong", |
| 63 "utils/dartdevc", | 63 "utils/dartdevc", |
| 64 "utils/dartdoc", | 64 "utils/dartdoc", |
| 65 "utils/dartfmt", | 65 "utils/dartfmt", |
| 66 "utils/pub", | 66 "utils/pub", |
| 67 ] | 67 ] |
| 68 | 68 |
| 69 sdk_lib_files = exec_script("tools/list_files.py", | 69 sdk_lib_files = exec_script("tools/list_dart_files.py", |
| 70 ["\\.dart\$", rebase_path("sdk/lib")], | 70 [rebase_path("sdk/lib")], |
| 71 "list lines") | 71 "list lines") |
| 72 | 72 |
| 73 preamble_files = exec_script("tools/list_files.py", | 73 preamble_files = exec_script("tools/list_files.py", |
| 74 ["", rebase_path("sdk/lib/_internal/js_runtime/lib/preambles")], | 74 ["", rebase_path("sdk/lib/_internal/js_runtime/lib/preambles")], |
| 75 "list lines") | 75 "list lines") |
| 76 | 76 |
| 77 sdk_bin_files = exec_script("tools/list_files.py", | 77 sdk_bin_files = exec_script("tools/list_files.py", |
| 78 ["", rebase_path("sdk/bin")], | 78 ["", rebase_path("sdk/bin")], |
| 79 "list lines") | 79 "list lines") |
| 80 | 80 |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 deps = [ | 148 deps = [ |
| 149 ":create_sdk" | 149 ":create_sdk" |
| 150 ] | 150 ] |
| 151 } | 151 } |
| 152 | 152 |
| 153 group("samples") { | 153 group("samples") { |
| 154 deps = [ | 154 deps = [ |
| 155 "runtime/bin:sample_extension" | 155 "runtime/bin:sample_extension" |
| 156 ] | 156 ] |
| 157 } | 157 } |
| OLD | NEW |