Title: [128632] trunk/Tools
Revision
128632
Author
[email protected]
Date
2012-09-14 11:26:16 -0700 (Fri, 14 Sep 2012)

Log Message

[Chromium] Build fix for DumpRenderTree following r128628
https://bugs.webkit.org/show_bug.cgi?id=96808

Reviewed by Tony Chang.

When building DumpRenderTree from the Chromium project, a compile error
shows up because including the header ForwardIOStreamsAndroid.h cannot
be located. TestWebKitAPI does this correctly.

* DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (128631 => 128632)


--- trunk/Tools/ChangeLog	2012-09-14 18:20:47 UTC (rev 128631)
+++ trunk/Tools/ChangeLog	2012-09-14 18:26:16 UTC (rev 128632)
@@ -1,3 +1,16 @@
+2012-09-14  Peter Beverloo  <[email protected]>
+
+        [Chromium] Build fix for DumpRenderTree following r128628
+        https://bugs.webkit.org/show_bug.cgi?id=96808
+
+        Reviewed by Tony Chang.
+
+        When building DumpRenderTree from the Chromium project, a compile error
+        shows up because including the header ForwardIOStreamsAndroid.h cannot
+        be located. TestWebKitAPI does this correctly.
+
+        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
+
 2012-09-14  Dana Jansens  <[email protected]>
 
         Change [email protected] watchlist to [email protected]

Modified: trunk/Tools/DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp (128631 => 128632)


--- trunk/Tools/DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp	2012-09-14 18:20:47 UTC (rev 128631)
+++ trunk/Tools/DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp	2012-09-14 18:26:16 UTC (rev 128632)
@@ -292,6 +292,14 @@
                         'copy_TestNetscapePlugIn',
                         '<(chromium_src_dir)/third_party/mesa/mesa.gyp:osmesa',
                     ],
+                    # FIXME: Remove when the io_stream_forwarder_android target is deprecated.
+                    'conditions': [
+                        ['inside_chromium_build==1', {
+                            'include_dirs': [
+                                '<(source_dir)/WebKit/chromium/',
+                            ],
+                        }],
+                    ],
                     'copies': [{
                         'destination': '<(PRODUCT_DIR)',
                         'files': [
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to