Title: [143855] trunk/Source/WebCore
Revision
143855
Author
[email protected]
Date
2013-02-23 17:38:08 -0800 (Sat, 23 Feb 2013)

Log Message

WebCore fails to link in Chromium official build
https://bugs.webkit.org/show_bug.cgi?id=110701

Reviewed by Abhishek Arya.

This is a follow-up fix for r143853. In WebCore.gyp, we need to
increase the shard of 'webcore_rendering' as well.

No tests. No change in behavior.

* WebCore.gyp/WebCore.gyp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (143854 => 143855)


--- trunk/Source/WebCore/ChangeLog	2013-02-24 00:17:03 UTC (rev 143854)
+++ trunk/Source/WebCore/ChangeLog	2013-02-24 01:38:08 UTC (rev 143855)
@@ -1,5 +1,19 @@
 2013-02-23  Kentaro Hara  <[email protected]>
 
+        WebCore fails to link in Chromium official build
+        https://bugs.webkit.org/show_bug.cgi?id=110701
+
+        Reviewed by Abhishek Arya.
+
+        This is a follow-up fix for r143853. In WebCore.gyp, we need to
+        increase the shard of 'webcore_rendering' as well.
+
+        No tests. No change in behavior.
+
+        * WebCore.gyp/WebCore.gyp:
+
+2013-02-23  Kentaro Hara  <[email protected]>
+
         Unreviewed, rolling out r143844.
         http://trac.webkit.org/changeset/143844
         https://bugs.webkit.org/show_bug.cgi?id=110241

Modified: trunk/Source/WebCore/WebCore.gyp/WebCore.gyp (143854 => 143855)


--- trunk/Source/WebCore/WebCore.gyp/WebCore.gyp	2013-02-24 00:17:03 UTC (rev 143854)
+++ trunk/Source/WebCore/WebCore.gyp/WebCore.gyp	2013-02-24 01:38:08 UTC (rev 143855)
@@ -1992,6 +1992,11 @@
         ['exclude', 'AllInOne\\.cpp$'],
       ],
       'conditions': [
+        # Shard this taret into parts to work around linker limitations.
+        # on link time code generation builds.
+        ['OS=="win" and buildtype=="Official"', {
+          'msvs_shard': 3,
+        }],
         ['use_default_render_theme==0', {
           'sources/': [
             ['exclude', 'rendering/RenderThemeChromiumDefault.*'],
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to