From d2daa5c13e8c2c73bdf15f2fc6874e2a58cdcfd3 Mon Sep 17 00:00:00 2001 From: "andrew@webrtc.org" Date: Wed, 30 Nov 2011 01:16:06 +0000 Subject: [PATCH] Use clang by default on Mac. But disable Chrome clang plugins for the time being. TEST=build Review URL: http://webrtc-codereview.appspot.com/297005 git-svn-id: http://webrtc.googlecode.com/svn/trunk@1059 4adac7df-926f-26a2-2b94-8c16560cd09d --- src/build/common.gypi | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/build/common.gypi b/src/build/common.gypi index 1af2e0481a..fe46f5f175 100644 --- a/src/build/common.gypi +++ b/src/build/common.gypi @@ -81,10 +81,11 @@ 'conditions': [ ['OS=="mac"', { - # TODO(andrew): clang is now the default on Mac, but we have a build - # error in a test. Temporarily disable clang until this is solved: - # http://code.google.com/p/webrtc/issues/detail?id=78 - 'clang%': 0, + # TODO(andrew): clang is the default on Mac. For now, disable the + # Chrome plugins, which causes a flood of chromium-style warnings. + # Investigate enabling the plugins: + # http://code.google.com/p/webrtc/issues/detail?id=163 + 'clang_use_chrome_plugins%': 0, }], ], }],