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

Side by Side Diff: BUILD.gn

Issue 2984243002: Include platform.dill files in sdk builds (Closed)
Patch Set: 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 | sdk/BUILD.gn » ('j') | sdk/BUILD.gn » ('J')
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",
Siggi Cherem (dart-lang) 2017/07/26 04:51:55 I had just added this yesterday thinking this is a
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
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 }
OLDNEW
« no previous file with comments | « no previous file | sdk/BUILD.gn » ('j') | sdk/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698