diff options
author | scottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-12 04:49:38 +0000 |
---|---|---|
committer | scottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-12 04:49:38 +0000 |
commit | 4f7ab99c72f990e2daaa63bafe9430f72d672a77 (patch) | |
tree | 4908de03a6ccfa093a7708a14527544cf8c42fc3 /third_party | |
parent | 6aecccddd76013655a2c4df9ea80462e3511f473 (diff) | |
download | chromium_src-4f7ab99c72f990e2daaa63bafe9430f72d672a77.zip chromium_src-4f7ab99c72f990e2daaa63bafe9430f72d672a77.tar.gz chromium_src-4f7ab99c72f990e2daaa63bafe9430f72d672a77.tar.bz2 |
suppress mesa build warning spam on windows
R=apatrick@chromium.org
BUG=143877,167187
Review URL: https://chromiumcodereview.appspot.com/14131003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@193851 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party')
-rw-r--r-- | third_party/mesa/mesa.gyp | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/third_party/mesa/mesa.gyp b/third_party/mesa/mesa.gyp index 9c2dd75..1bd999d 100644 --- a/third_party/mesa/mesa.gyp +++ b/third_party/mesa/mesa.gyp @@ -3,11 +3,6 @@ # found in the LICENSE file. { - 'variables': { - # Disable warnings as errors for mesa until they're fixed or disabled. - # http://crbug.com/143877 - 'win_third_party_warn_as_error': 'false', - }, 'conditions': [ ['use_system_mesa==0', { 'target_defaults': { @@ -58,6 +53,12 @@ 'dependencies': [ 'mesa_headers', ], + # TODO(scottmg): http://crbug.com/143877 These should be removed if + # Mesa is ever rolled and the warnings are fixed. + 'msvs_disabled_warnings': [ + 4005, 4018, 4065, 4090, 4099, 4113, 4133, 4146, 4267, 4273, 4291, + 4305, 4334, 4748, + ], 'sources': [ '../talloc/talloc.c', 'MesaLib/src/glsl/ast.h', @@ -581,6 +582,11 @@ 'MesaLib/src/mesa', 'MesaLib/src/mesa/drivers', ], + # TODO(scottmg): http://crbug.com/143877 These should be removed if + # Mesa is ever rolled and the warnings are fixed. + 'msvs_disabled_warnings': [ + 4005, 4133, 4267, + ], 'sources': [ 'MesaLib/src/mesa/drivers/common/driverfuncs.c', 'MesaLib/src/mesa/drivers/common/driverfuncs.h', |