From dcbdd2c14076d20cf965dc9a85fa06b614cea750 Mon Sep 17 00:00:00 2001 From: Jiawei Ou Date: Tue, 12 Feb 2019 13:21:00 -0800 Subject: [PATCH] Add Foundation.framework to cocoa_threading target https://webrtc-review.googlesource.com/c/src/+/105301 remove the dependency to rtc_base_generic, it also removed the dependnecy to Foundation.framework. This CL adds it back. Bug: webrtc:9838 Change-Id: I861e73d13eb36d2c3a09d998a6def9512066f0d5 Reviewed-on: https://webrtc-review.googlesource.com/c/122621 Reviewed-by: Mirko Bonadei Commit-Queue: Jiawei Ou Cr-Commit-Position: refs/heads/master@{#26654} --- rtc_base/system/BUILD.gn | 1 + 1 file changed, 1 insertion(+) diff --git a/rtc_base/system/BUILD.gn b/rtc_base/system/BUILD.gn index e5aa32b4ef..8b83d04be2 100644 --- a/rtc_base/system/BUILD.gn +++ b/rtc_base/system/BUILD.gn @@ -75,5 +75,6 @@ if (is_mac || is_ios) { deps = [ "..:checks", ] + libs = [ "Foundation.framework" ] } }