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

evan at chromium.org evan at chromium.org
Wed Dec 22 13:24:43 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit f37c0d0b5d6a7f5c8098aea4a6583024e797f955
Author: evan at chromium.org <evan at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Sep 14 18:15:52 2010 +0000

    2010-09-14  Evan Martin  <evan at chromium.org>
    
            Reviewed by Darin Fisher.
    
            [chromium] building without debug syms broke after recent refactoring
            https://bugs.webkit.org/show_bug.cgi?id=45720
    
            Now that we build WebCore as multiple libraries, we need to adjust the
            flags to turn off debug symbols for all of these libraries.
    
            No new tests; should only affect an uncommon build flag.
    
            * WebCore.gyp/WebCore.gyp:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@67481 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index d7901b3..0503617 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,17 @@
+2010-09-14  Evan Martin  <evan at chromium.org>
+
+        Reviewed by Darin Fisher.
+
+        [chromium] building without debug syms broke after recent refactoring
+        https://bugs.webkit.org/show_bug.cgi?id=45720
+
+        Now that we build WebCore as multiple libraries, we need to adjust the
+        flags to turn off debug symbols for all of these libraries.
+
+        No new tests; should only affect an uncommon build flag.
+
+        * WebCore.gyp/WebCore.gyp:
+
 2010-09-14  Tony Chang  <tony at chromium.org>
 
         Unreviewed, fix chromium compile.
diff --git a/WebCore/WebCore.gyp/WebCore.gyp b/WebCore/WebCore.gyp/WebCore.gyp
index 8377f2a..0ae168c 100644
--- a/WebCore/WebCore.gyp/WebCore.gyp
+++ b/WebCore/WebCore.gyp/WebCore.gyp
@@ -95,6 +95,12 @@
         },  # target webkit_system_interface
       ],  # targets
     }],  # condition OS == "mac"
+    ['OS!="win" and remove_webcore_debug_symbols==1', {
+      # Remove -g from all targets defined here.
+      'target_defaults': {
+        'cflags!': ['-g'],
+      },
+    }],
   ],  # conditions
 
   'variables': {
@@ -800,13 +806,6 @@
             'include_dirs+++': ['../dom'],
           },
         }],
-        ['OS!="win" and remove_webcore_debug_symbols==1', {
-          'configurations': {
-            'Debug': {
-              'cflags!': ['-g'],
-            }
-          },
-        }],
       ],
     },
     {

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list