From 34db033cd4489f6bc6a60549a73e555aa57a5bc3 Mon Sep 17 00:00:00 2001 From: kjellander Date: Tue, 30 Aug 2016 04:17:12 -0700 Subject: [PATCH] GN: Fix common_audio linking on iOS The invalid condition made the test be included for iOS, which fails linking. BUG=webrtc:5949, webrtc:5544 NOTRY=True Review-Url: https://codereview.webrtc.org/2291023002 Cr-Commit-Position: refs/heads/master@{#13970} --- webrtc/common_audio/BUILD.gn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webrtc/common_audio/BUILD.gn b/webrtc/common_audio/BUILD.gn index a73d63d1ea..cc5a7702f2 100644 --- a/webrtc/common_audio/BUILD.gn +++ b/webrtc/common_audio/BUILD.gn @@ -284,7 +284,7 @@ if (rtc_include_tests) { ] # Does not compile on iOS for arm: webrtc:5544. - if (!is_ios || target_cpu != "arm" || target_cpu != "arm64") { + if (!is_ios || target_cpu != "arm") { sources += [ "resampler/sinc_resampler_unittest.cc" ] }