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

Unified Diff: runtime/observatory/BUILD.gn

Issue 2937503003: Reapply "[fuchsia] Prepare for setting the Dart target architecture appropriately in the host binar… (Closed)
Patch Set: 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
Index: runtime/observatory/BUILD.gn
diff --git a/runtime/observatory/BUILD.gn b/runtime/observatory/BUILD.gn
index 969d9ee9e5cf1d209d777222318bcca6bb5d7d5b..3189033d5edfc93f67c4ad67e7724052ccb04060 100644
--- a/runtime/observatory/BUILD.gn
+++ b/runtime/observatory/BUILD.gn
@@ -40,11 +40,13 @@ 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_host_arch($host_toolchain)" ]
dart_out_dir =
- get_label_info("../bin:dart_bootstrap($host_toolchain)", "root_out_dir")
- dart_bootstrap = rebase_path("$dart_out_dir/dart_bootstrap$executable_suffix")
+ get_label_info("../bin:dart_bootstrap_host_arch($host_toolchain)",
+ "root_out_dir")
+ dart_bootstrap =
+ rebase_path("$dart_out_dir/dart_bootstrap_host_arch$executable_suffix")
pub_build_args = [
"--sdk=True",

Powered by Google App Engine
This is Rietveld 408576698