Title: [115500] trunk/Tools
Revision
115500
Author
[email protected]
Date
2012-04-27 15:11:56 -0700 (Fri, 27 Apr 2012)

Log Message

[chromium] make case of npTestNetscapePlugIn.dll match case in copy rule
https://bugs.webkit.org/show_bug.cgi?id=85083

Patch by Scott Graham <[email protected]> on 2012-04-27
Reviewed by Dirk Pranke.

Make output product_name for npTestNetscapePlugIn.dll match the case
of the copy_TestNetscapePlugIn rule. This is required for ninja, which
is more particular about case matching in rules than the VS build.

* DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (115499 => 115500)


--- trunk/Tools/ChangeLog	2012-04-27 22:02:23 UTC (rev 115499)
+++ trunk/Tools/ChangeLog	2012-04-27 22:11:56 UTC (rev 115500)
@@ -1,3 +1,16 @@
+2012-04-27  Scott Graham  <[email protected]>
+
+        [chromium] make case of npTestNetscapePlugIn.dll match case in copy rule
+        https://bugs.webkit.org/show_bug.cgi?id=85083
+
+        Reviewed by Dirk Pranke.
+
+        Make output product_name for npTestNetscapePlugIn.dll match the case
+        of the copy_TestNetscapePlugIn rule. This is required for ninja, which
+        is more particular about case matching in rules than the VS build.
+
+        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
+
 2012-04-27  Dirk Pranke  <[email protected]>
 
         [chromium] use "drt-style" output, not "test-shell-style" output, on mac and linux DRT

Modified: trunk/Tools/DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp (115499 => 115500)


--- trunk/Tools/DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp	2012-04-27 22:02:23 UTC (rev 115499)
+++ trunk/Tools/DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp	2012-04-27 22:11:56 UTC (rev 115500)
@@ -324,8 +324,8 @@
                         '<(tools_dir)/DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.def',
                         '<(tools_dir)/DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.rc',
                     ],
-                    # The .rc file requires that the name of the dll is npTestNetscapePlugin.dll.
-                    'product_name': 'npTestNetscapePlugin',
+                    # The .rc file requires that the name of the dll is npTestNetscapePlugIn.dll.
+                    'product_name': 'npTestNetscapePlugIn',
                 }],
             ],
         },
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to