From bef8a5d2ca5413c680995584b8c0976852ba5f25 Mon Sep 17 00:00:00 2001 From: wjywbs Date: Mon, 9 Oct 2017 02:32:28 -0400 Subject: [PATCH] Fix fat build for ios. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit root_build_dir will always be the root build output directory. root_out_dir is the directory "for the current toolchain". WebRTC.framework is always in the root output directory. Bug: webrtc:7507 Change-Id: I30b8eccaac3ed07e40c86acf361ee24a1c20b074 Reviewed-on: https://webrtc-review.googlesource.com/7640 Commit-Queue: Kári Helgason Reviewed-by: Kári Helgason Cr-Commit-Position: refs/heads/master@{#20237} --- examples/BUILD.gn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/BUILD.gn b/examples/BUILD.gn index 8f7ce889c8..7c933f0122 100644 --- a/examples/BUILD.gn +++ b/examples/BUILD.gn @@ -318,7 +318,7 @@ if (is_ios || (is_mac && target_cpu != "x86")) { "../sdk:framework_objc+link", ] sources = [ - "$root_out_dir/WebRTC.framework", + "$root_build_dir/WebRTC.framework", ] outputs = [ "{{bundle_resources_dir}}/Frameworks/{{source_file_part}}",