Title: [166363] trunk/Source/WebInspectorUI
Revision
166363
Author
bfulg...@apple.com
Date
2014-03-27 10:51:38 -0700 (Thu, 27 Mar 2014)

Log Message

[Win] Correct handling of autogenerated WebInspectorUI files
https://bugs.webkit.org/show_bug.cgi?id=130846

Reviewed by Joseph Pecoraro.

* WebInspectorUI.vcxproj/WebInspectorUIPostBuild.cmd: Files need to be placed in the
'Protocol' subdirectory of the WebInspectorUI directory.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (166362 => 166363)


--- trunk/Source/WebInspectorUI/ChangeLog	2014-03-27 17:50:53 UTC (rev 166362)
+++ trunk/Source/WebInspectorUI/ChangeLog	2014-03-27 17:51:38 UTC (rev 166363)
@@ -1,3 +1,13 @@
+2014-03-27  Brent Fulgham  <bfulg...@apple.com>
+
+        [Win] Correct handling of autogenerated WebInspectorUI files
+        https://bugs.webkit.org/show_bug.cgi?id=130846
+
+        Reviewed by Joseph Pecoraro.
+
+        * WebInspectorUI.vcxproj/WebInspectorUIPostBuild.cmd: Files need to be placed in the
+        'Protocol' subdirectory of the WebInspectorUI directory.
+
 2014-03-25  James Craig  <jcr...@apple.com>
 
         Web Inspector: AXI: add support for aria-activedescendant and reconcile UI/testing with parentNode

Modified: trunk/Source/WebInspectorUI/WebInspectorUI.vcxproj/WebInspectorUIPostBuild.cmd (166362 => 166363)


--- trunk/Source/WebInspectorUI/WebInspectorUI.vcxproj/WebInspectorUIPostBuild.cmd	2014-03-27 17:50:53 UTC (rev 166362)
+++ trunk/Source/WebInspectorUI/WebInspectorUI.vcxproj/WebInspectorUIPostBuild.cmd	2014-03-27 17:51:38 UTC (rev 166363)
@@ -1,6 +1,7 @@
 mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\bin%PlatformArchitecture%\WebKit.resources\WebInspectorUI"
 xcopy /y /e "%PROJECTDIR%..\UserInterface\*" "%CONFIGURATIONBUILDDIR%\bin%PlatformArchitecture%\WebKit.resources\WebInspectorUI"
 xcopy /y /d "%PROJECTDIR%..\Localizations\en.lproj\*" "%CONFIGURATIONBUILDDIR%\bin%PlatformArchitecture%\WebKit.resources\WebInspectorUI"
-xcopy /y /d "%CONFIGURATIONBUILDDIR%\obj%PlatformArchitecture%\_javascript_Core\DerivedSources\InspectorJSBackendCommands.js" "%CONFIGURATIONBUILDDIR%\bin%PlatformArchitecture%\WebKit.resources\WebInspectorUI"
-xcopy /y /d "%CONFIGURATIONBUILDDIR%\obj%PlatformArchitecture%\WebCore\DerivedSources\InspectorWebBackendCommands.js" "%CONFIGURATIONBUILDDIR%\bin%PlatformArchitecture%\WebKit.resources\WebInspectorUI"
+mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\bin%PlatformArchitecture%\WebKit.resources\WebInspectorUI\Protocol"
+xcopy /y /d "%CONFIGURATIONBUILDDIR%\obj%PlatformArchitecture%\_javascript_Core\DerivedSources\InspectorJSBackendCommands.js" "%CONFIGURATIONBUILDDIR%\bin%PlatformArchitecture%\WebKit.resources\WebInspectorUI\Protocol"
+xcopy /y /d "%CONFIGURATIONBUILDDIR%\obj%PlatformArchitecture%\WebCore\DerivedSources\InspectorWebBackendCommands.js" "%CONFIGURATIONBUILDDIR%\bin%PlatformArchitecture%\WebKit.resources\WebInspectorUI\Protocol"
 if exist "%CONFIGURATIONBUILDDIR%\buildfailed" del "%CONFIGURATIONBUILDDIR%\buildfailed"
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to