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

Unified Diff: runtime/observatory/BUILD.gn

Issue 2944103003: Introduce dart_host_toolchain arg, remove '--checked' option from patch_sdk.py (Closed)
Patch Set: Add comment Created 3 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/dart_host_toolchain.gni ('k') | tools/patch_sdk.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/observatory/BUILD.gn
diff --git a/runtime/observatory/BUILD.gn b/runtime/observatory/BUILD.gn
index 969d9ee9e5cf1d209d777222318bcca6bb5d7d5b..a799aa2e2ae9ebcd2d1d0831a289262c0ccd57b7 100644
--- a/runtime/observatory/BUILD.gn
+++ b/runtime/observatory/BUILD.gn
@@ -4,6 +4,7 @@
import("../../build/executable_suffix.gni")
import("../../build/prebuilt_dart_sdk.gni")
+import("../../build/dart_host_toolchain.gni")
# Currently paths here are hard coded for convenience in building Mojo/Flutter.
declare_args() {
@@ -40,10 +41,10 @@ if (dart_host_pub_exe != "") {
dart_host_pub_exe,
]
} else if (!prebuilt_dart_exe_works) {
- pub_build_deps += [ "../bin:dart_bootstrap($host_toolchain)" ]
+ pub_build_deps += [ "../bin:dart_bootstrap($dart_host_toolchain)" ]
- dart_out_dir =
- get_label_info("../bin:dart_bootstrap($host_toolchain)", "root_out_dir")
+ dart_out_dir = get_label_info("../bin:dart_bootstrap($dart_host_toolchain)",
+ "root_out_dir")
dart_bootstrap = rebase_path("$dart_out_dir/dart_bootstrap$executable_suffix")
pub_build_args = [
« no previous file with comments | « build/dart_host_toolchain.gni ('k') | tools/patch_sdk.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698