From b6e189096aaa5b3de51aafe14b56e30d23645087 Mon Sep 17 00:00:00 2001 From: Alain Vongsouvanh Date: Tue, 5 Jun 2018 17:47:13 +0000 Subject: [PATCH] Use new target/{x64,arm64} directory from Fuchsia SDK. The new SDK format put the kernel images under the target/{x64,arm64} directories. Change-Id: I36f944cf1914289ec16d8f9595323b3797652709 Reviewed-on: https://chromium-review.googlesource.com/1087492 Commit-Queue: Alain Vongsouvanh Commit-Queue: Wez Reviewed-by: Wez Cr-Original-Commit-Position: refs/heads/master@{#564564} Cr-Mirrored-From: https://chromium.googlesource.com/chromium/src Cr-Mirrored-Commit: e822f462b0ca5c542a5381addd84dbe8b7a1d420 --- config/fuchsia/BUILD.gn | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/config/fuchsia/BUILD.gn b/config/fuchsia/BUILD.gn index a861ea879..ab88b6eac 100644 --- a/config/fuchsia/BUILD.gn +++ b/config/fuchsia/BUILD.gn @@ -74,11 +74,7 @@ action("blobstore_extended_fvm") { # limitation in the future. _extend_size = "1073741824" # 1GB - if (current_cpu == "arm64") { - _target_dir = "//third_party/fuchsia-sdk/sdk/target/aarch64" - } else if (current_cpu == "x64") { - _target_dir = "//third_party/fuchsia-sdk/sdk/target/x86_64" - } + _target_dir = "//third_party/fuchsia-sdk/sdk/target/${current_cpu}" script = "//build/config/fuchsia/extend_fvm.py"