Chromium Code Reviews| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 49 "runtime/bin:test_extension", | 49 "runtime/bin:test_extension", |
| 50 "runtime/bin:sample_extension", | 50 "runtime/bin:sample_extension", |
| 51 ] | 51 ] |
| 52 } | 52 } |
| 53 | 53 |
| 54 | 54 |
| 55 action("create_sdk") { | 55 action("create_sdk") { |
| 56 deps = [ | 56 deps = [ |
| 57 "runtime/bin:dart", | 57 "runtime/bin:dart", |
| 58 "utils/analysis_server", | 58 "utils/analysis_server", |
| 59 "utils/compiler:dart2js", | 59 "utils/compiler:dart2js", |
|
zra
2016/10/21 15:25:24
"utils/compiler" see note there.
| |
| 60 "utils/compiler:utils_wrapper", | |
| 60 "utils/dartanalyzer:generate_dartanalyzer_snapshot", | 61 "utils/dartanalyzer:generate_dartanalyzer_snapshot", |
| 61 "utils/dartanalyzer:generate_summary_spec", | 62 "utils/dartanalyzer:generate_summary_spec", |
| 62 "utils/dartanalyzer:generate_summary_strong", | 63 "utils/dartanalyzer:generate_summary_strong", |
| 63 "utils/dartdevc", | 64 "utils/dartdevc", |
| 64 "utils/dartdoc", | 65 "utils/dartdoc", |
| 65 "utils/dartfmt", | 66 "utils/dartfmt", |
| 66 "utils/pub", | 67 "utils/pub", |
| 67 ] | 68 ] |
| 68 | 69 |
| 69 sdk_lib_files = exec_script("tools/list_dart_files.py", | 70 sdk_lib_files = exec_script("tools/list_dart_files.py", |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 148 deps = [ | 149 deps = [ |
| 149 ":create_sdk" | 150 ":create_sdk" |
| 150 ] | 151 ] |
| 151 } | 152 } |
| 152 | 153 |
| 153 group("samples") { | 154 group("samples") { |
| 154 deps = [ | 155 deps = [ |
| 155 "runtime/bin:sample_extension" | 156 "runtime/bin:sample_extension" |
| 156 ] | 157 ] |
| 157 } | 158 } |
| OLD | NEW |