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", | |
115 ] | 114 ] |
116 } | 115 } |
117 | 116 |
118 group("samples") { | 117 group("samples") { |
119 deps = [ | 118 deps = [ |
120 "runtime/bin:sample_extension", | 119 "runtime/bin:sample_extension", |
121 ] | 120 ] |
122 } | 121 } |
123 | 122 |
124 # The rules below build a Fuchsia OS image that includes the Dart tree | 123 # 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... |
200 "--output-file", | 199 "--output-file", |
201 rebase_path(output), | 200 rebase_path(output), |
202 "--build-id-map", | 201 "--build-id-map", |
203 rebase_path("$target_gen_dir/build_id_map"), | 202 rebase_path("$target_gen_dir/build_id_map"), |
204 "--pre-binaries", | 203 "--pre-binaries", |
205 rebase_path(magenta_bootdata), | 204 rebase_path(magenta_bootdata), |
206 ] | 205 ] |
207 args += read_file(packages_file, "list lines") | 206 args += read_file(packages_file, "list lines") |
208 } | 207 } |
209 } | 208 } |
OLD | NEW |