Title: [140598] trunk/Source/WebCore
Revision
140598
Author
[email protected]
Date
2013-01-23 14:49:35 -0800 (Wed, 23 Jan 2013)

Log Message

[Chromium] Fix inclusion of pch .cpp in webcore_platform and webcore_rendering
https://bugs.webkit.org/show_bug.cgi?id=107700

Patch by Scott Graham <[email protected]> on 2013-01-23
Reviewed by Dirk Pranke.

No new tests, Chromium should link on VS 2012.

* WebCore.gyp/WebCore.gyp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (140597 => 140598)


--- trunk/Source/WebCore/ChangeLog	2013-01-23 22:33:29 UTC (rev 140597)
+++ trunk/Source/WebCore/ChangeLog	2013-01-23 22:49:35 UTC (rev 140598)
@@ -1,3 +1,14 @@
+2013-01-23  Scott Graham  <[email protected]>
+
+        [Chromium] Fix inclusion of pch .cpp in webcore_platform and webcore_rendering
+        https://bugs.webkit.org/show_bug.cgi?id=107700
+
+        Reviewed by Dirk Pranke.
+
+        No new tests, Chromium should link on VS 2012.
+
+        * WebCore.gyp/WebCore.gyp:
+
 2013-01-23  Jun Jiang  <[email protected]>
 
         Avoid unnecessary format conversion for tex{Sub}Image2D() for ImageData of WebGL

Modified: trunk/Source/WebCore/WebCore.gyp/WebCore.gyp (140597 => 140598)


--- trunk/Source/WebCore/WebCore.gyp/WebCore.gyp	2013-01-23 22:33:29 UTC (rev 140597)
+++ trunk/Source/WebCore/WebCore.gyp/WebCore.gyp	2013-01-23 22:49:35 UTC (rev 140598)
@@ -1921,6 +1921,11 @@
             ['include', 'platform/graphics/opentype/OpenTypeSanitizer\\.cpp$'],
           ],
         }],
+        ['OS=="win" and chromium_win_pch==1', {
+          'sources/': [
+            ['include', '<(win_pch_dir)/WinPrecompile.cpp'],
+          ],
+        }],
         ['OS=="android"', {
           'sources/': [
             ['include', 'platform/chromium/ClipboardChromiumLinux\\.cpp$'],
@@ -2017,6 +2022,11 @@
             ['exclude', 'Win\\.cpp$'],
           ],
         }],
+        ['OS=="win" and chromium_win_pch==1', {
+          'sources/': [
+            ['include', '<(win_pch_dir)/WinPrecompile.cpp'],
+          ],
+        }],
         ['OS=="mac"', {
           'sources/': [
             # RenderThemeChromiumSkia is not used on mac since RenderThemeChromiumMac
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to