summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-13 19:51:35 +0000
committertc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-13 19:51:35 +0000
commite933d010faa90ca7a1774978f7ee4b48300b3b64 (patch)
treec5e4773834d0fc619004eef12ff7b6c486718bfd
parent9220808276fb6d7dc5c2d5f8dd958318254f5106 (diff)
downloadchromium_src-e933d010faa90ca7a1774978f7ee4b48300b3b64.zip
chromium_src-e933d010faa90ca7a1774978f7ee4b48300b3b64.tar.gz
chromium_src-e933d010faa90ca7a1774978f7ee4b48300b3b64.tar.bz2
disable warnings in third_party dmg_fp
Review URL: http://codereview.chromium.org/10880 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5361 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--third_party/dmg_fp/dmg_fp.scons4
-rw-r--r--third_party/dmg_fp/dmg_fp.vsprops1
2 files changed, 5 insertions, 0 deletions
diff --git a/third_party/dmg_fp/dmg_fp.scons b/third_party/dmg_fp/dmg_fp.scons
index d9614d0..38bfe96 100644
--- a/third_party/dmg_fp/dmg_fp.scons
+++ b/third_party/dmg_fp/dmg_fp.scons
@@ -20,7 +20,11 @@ if env['PLATFORM'] == 'win32':
CCFLAGS = [
'/TP',
+ '/wd4018',
+ '/wd4102',
+ '/wd4244',
'/wd4503',
+ '/wd4554',
'/wd4800',
'/wd4819',
],
diff --git a/third_party/dmg_fp/dmg_fp.vsprops b/third_party/dmg_fp/dmg_fp.vsprops
index b48cb08..78e061f 100644
--- a/third_party/dmg_fp/dmg_fp.vsprops
+++ b/third_party/dmg_fp/dmg_fp.vsprops
@@ -7,5 +7,6 @@
<Tool
Name="VCCLCompilerTool"
PreprocessorDefinitions="IEEE_8087"
+ DisableSpecificWarnings="4018;4102;4244;4554"
/>
</VisualStudioPropertySheet>