mac: Disable clang plugin in asan builds.
asan's clang is currently pinned to a very old revision and hence includes
a very old plugin. Since all other bots run the plugin, we don't really
lose coverage by disabling the plugin on asan bots for now.
BUG=170629
TBR=glider
Review URL: https://chromiumcodereview.appspot.com/14305005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@195479 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/build/common.gypi b/build/common.gypi
index e4a3d108..354cdb2 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -3595,7 +3595,10 @@
'$(inherited)', '-std=gnu++11',
],
}],
- ['clang==1 and clang_use_chrome_plugins==1', {
+ # TODO(thakis): Reenable plugins with once
+ # tools/clang/scripts/update.sh no longer pins clang to an ancient
+ # version for asan (http://crbug.com/170629)
+ ['clang==1 and clang_use_chrome_plugins==1 and asan!=1', {
'OTHER_CFLAGS': [
'<@(clang_chrome_plugins_flags)',
],