From 90920d5bec281c986ff26a53a0599b9c98a1d4cd Mon Sep 17 00:00:00 2001 From: ehmaldonado Date: Tue, 16 Aug 2016 04:13:01 -0700 Subject: [PATCH] GN: Enable msse2 flag in Mac. It was disabled for some reason, even though in GYP it's enabled. BUG=626067 NOTRY=True Review-Url: https://codereview.webrtc.org/2247293002 Cr-Commit-Position: refs/heads/master@{#13780} --- webrtc/modules/desktop_capture/BUILD.gn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webrtc/modules/desktop_capture/BUILD.gn b/webrtc/modules/desktop_capture/BUILD.gn index 672433e32b..735b4605d6 100644 --- a/webrtc/modules/desktop_capture/BUILD.gn +++ b/webrtc/modules/desktop_capture/BUILD.gn @@ -177,7 +177,7 @@ if (use_desktop_capture_differ_sse2) { configs += [ "../..:common_config" ] public_configs = [ "../..:common_inherited_config" ] - if (is_posix && !is_mac) { + if (is_posix) { cflags = [ "-msse2" ] } }