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

Unified Diff: utils/generate_patch_sdk.gni

Issue 2944103003: Introduce dart_host_toolchain arg, remove '--checked' option from patch_sdk.py (Closed)
Patch Set: Update 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
« tools/patch_sdk.py ('K') | « tools/patch_sdk.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/generate_patch_sdk.gni
diff --git a/utils/generate_patch_sdk.gni b/utils/generate_patch_sdk.gni
index 4ec995784dd982469c7308f03bbbecee89a65228..bb64f59475762b25f18ecb024fece7d5aa62502f 100644
--- a/utils/generate_patch_sdk.gni
+++ b/utils/generate_patch_sdk.gni
@@ -28,7 +28,7 @@ template("generate_patched_sdk") {
}
if (!prebuilt_dart_exe_works) {
- deps += [ "$_dart_root/runtime/bin:dart_bootstrap_host_arch($host_toolchain)" ]
+ deps += [ "$_dart_root/runtime/bin:dart_bootstrap_host_arch" ]
}
script = "$_dart_root/tools/patch_sdk.py"
@@ -48,9 +48,9 @@ template("generate_patched_sdk") {
args = [ "--quiet" ]
if (!prebuilt_dart_exe_works) {
- dart_out_dir = get_label_info(
- "$_dart_root/runtime/bin:dart_bootstrap_host_arch($host_toolchain)",
- "root_out_dir")
+ dart_out_dir =
+ get_label_info("$_dart_root/runtime/bin:dart_bootstrap_host_arch",
+ "root_out_dir")
dart_bootstrap = rebase_path(
"$dart_out_dir/dart_bootstrap_host_arch$executable_suffix")
args += [
« tools/patch_sdk.py ('K') | « tools/patch_sdk.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698