diff options
author | scottmg@google.com <scottmg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-17 17:29:22 +0000 |
---|---|---|
committer | scottmg@google.com <scottmg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-17 17:29:22 +0000 |
commit | 1d0475b98ca8a71b9d5ddf7361900d2c5d955cf8 (patch) | |
tree | 645119ff90863dba7c5efcf5d6ee63cd90ec591b /third_party | |
parent | b5ed12b81f0a8a0142b5b17aca30bdda37cd98ce (diff) | |
download | chromium_src-1d0475b98ca8a71b9d5ddf7361900d2c5d955cf8.zip chromium_src-1d0475b98ca8a71b9d5ddf7361900d2c5d955cf8.tar.gz chromium_src-1d0475b98ca8a71b9d5ddf7361900d2c5d955cf8.tar.bz2 |
Disable warning in leveldb
Patch has been committed upstream (internal) but it will be a while before it's
released to code.google.com, and then rolled into Chromium. So, disable
minor warning for now.
R=thakis@chromium.org
BUG=126483
Review URL: https://chromiumcodereview.appspot.com/10384092
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137678 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party')
-rw-r--r-- | third_party/leveldatabase/leveldatabase.gyp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/third_party/leveldatabase/leveldatabase.gyp b/third_party/leveldatabase/leveldatabase.gyp index db59f77..101df72 100644 --- a/third_party/leveldatabase/leveldatabase.gyp +++ b/third_party/leveldatabase/leveldatabase.gyp @@ -55,6 +55,13 @@ 'include_dirs': [ 'src/port/win', ], + # Patch posted for upstream, can be removed once that's landed and + # rolled into Chromium. + # Internal link: https://mondrian.corp.google.com/#review/29997992 + 'msvs_disabled_warnings': [ + # Signed/unsigned comparison. + 4018, + ], }], ], }, |