[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-10851-g50815da

evan at chromium.org evan at chromium.org
Wed Dec 22 18:44:31 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit eb2b32f18b6c338d7ebdc06e1cdd7717870e75e0
Author: evan at chromium.org <evan at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Dec 17 01:52:43 2010 +0000

    2010-12-16  Evan Martin  <evan at chromium.org>
    
            Reviewed by Darin Fisher.
    
            [chromium] useless warnings when building on Windows
            https://bugs.webkit.org/show_bug.cgi?id=50985
    
            Disable some compiler warnings that aren't indicative of real problems.
    
            * JavaScriptCore.gyp/JavaScriptCore.gyp:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@74221 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index 3e13765..c134e31 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,3 +1,14 @@
+2010-12-16  Evan Martin  <evan at chromium.org>
+
+        Reviewed by Darin Fisher.
+
+        [chromium] useless warnings when building on Windows
+        https://bugs.webkit.org/show_bug.cgi?id=50985
+
+        Disable some compiler warnings that aren't indicative of real problems.
+
+        * JavaScriptCore.gyp/JavaScriptCore.gyp:
+
 2010-12-16  Pratik Solanki  <psolanki at apple.com>
 
         Reviewed by Geoffrey Garen.
diff --git a/JavaScriptCore/JavaScriptCore.gyp/JavaScriptCore.gyp b/JavaScriptCore/JavaScriptCore.gyp/JavaScriptCore.gyp
index 32270e8..d75fccf 100644
--- a/JavaScriptCore/JavaScriptCore.gyp/JavaScriptCore.gyp
+++ b/JavaScriptCore/JavaScriptCore.gyp/JavaScriptCore.gyp
@@ -125,6 +125,16 @@
           '../',
           '../wtf',
         ],
+        # Some warnings occur in JSC headers, so they must also be disabled
+        # in targets that use JSC.
+        'msvs_disabled_warnings': [
+          # Don't complain about calling specific versions of templatized
+          # functions (e.g. in RefPtrHashMap.h).
+          4344,
+          # Don't complain about using "this" in an initializer list
+          # (e.g. in StringImpl.h).
+          4355,
+        ],
       },
       'export_dependent_settings': [
         'wtf_config',

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list