diff options
author | rsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-02 18:20:19 +0000 |
---|---|---|
committer | rsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-02 18:20:19 +0000 |
commit | b5d378decc6b0e5c6352e749f503d0f2c4ff9725 (patch) | |
tree | ca5e864411f7825a288001d9a23fbdd69bd7729b /build | |
parent | d81bb3ed85e300b212692ca56d97a35514c060e8 (diff) | |
download | chromium_src-b5d378decc6b0e5c6352e749f503d0f2c4ff9725.zip chromium_src-b5d378decc6b0e5c6352e749f503d0f2c4ff9725.tar.gz chromium_src-b5d378decc6b0e5c6352e749f503d0f2c4ff9725.tar.bz2 |
Turn off Clang virtual/OVERRIDE warnings in .cc files when use_aura==1
r197789 enabled the Clang warnings for Linux, but Aura-only files weren't fixed
because it wasn't enabled for ChromeOS. Disable the warnings on Aura for now,
until all existing files can be fixed.
BUG=115047
R=thakis@chromium.org
Review URL: https://codereview.chromium.org/14688012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197944 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r-- | build/common.gypi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/common.gypi b/build/common.gypi index 8e55692..b77db61 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -1532,7 +1532,7 @@ ], }, 'conditions': [ - ['OS=="linux" and chromeos==0', { + ['OS=="linux" and chromeos==0 and use_aura==0', { 'clang_chrome_plugins_flags': [ '<@(clang_chrome_plugins_flags)' ], |