Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(496)

Side by Side Diff: BUILD.gn

Issue 2990633002: Add patched_dart2js_sdk to the dart2js_bot build target (Closed)
Patch Set: fix mistake Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698