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 import("build/dart_host_toolchain.gni") | 5 import("build/dart_host_toolchain.gni") |
6 | 6 |
7 # This target will be built if no target is specified when invoking ninja. | 7 # This target will be built if no target is specified when invoking ninja. |
8 group("default") { | 8 group("default") { |
9 if (is_fuchsia || is_fuchsia_host) { | 9 if (is_fuchsia || is_fuchsia_host) { |
10 # Fuchsia has run_vm_tests marked testonly. | 10 # Fuchsia has run_vm_tests marked testonly. |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 "utils/analysis_server", | 104 "utils/analysis_server", |
105 ] | 105 ] |
106 } | 106 } |
107 | 107 |
108 # This is the target that is built on the dart2js build bots. | 108 # This is the target that is built on the dart2js build bots. |
109 # It must depend on anything that is required by the dart2js | 109 # It must depend on anything that is required by the dart2js |
110 # test suites. | 110 # test suites. |
111 group("dart2js_bot") { | 111 group("dart2js_bot") { |
112 deps = [ | 112 deps = [ |
113 ":create_sdk", | 113 ":create_sdk", |
| 114 "utils/compiler:patched_dart2js_sdk", |
114 ] | 115 ] |
115 } | 116 } |
116 | 117 |
117 group("samples") { | 118 group("samples") { |
118 deps = [ | 119 deps = [ |
119 "runtime/bin:sample_extension", | 120 "runtime/bin:sample_extension", |
120 ] | 121 ] |
121 } | 122 } |
122 | 123 |
123 # The rules below build a Fuchsia OS image that includes the Dart tree | 124 # The rules below build a Fuchsia OS image that includes the Dart tree |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
199 "--output-file", | 200 "--output-file", |
200 rebase_path(output), | 201 rebase_path(output), |
201 "--build-id-map", | 202 "--build-id-map", |
202 rebase_path("$target_gen_dir/build_id_map"), | 203 rebase_path("$target_gen_dir/build_id_map"), |
203 "--pre-binaries", | 204 "--pre-binaries", |
204 rebase_path(magenta_bootdata), | 205 rebase_path(magenta_bootdata), |
205 ] | 206 ] |
206 args += read_file(packages_file, "list lines") | 207 args += read_file(packages_file, "list lines") |
207 } | 208 } |
208 } | 209 } |
OLD | NEW |