From f3c5cbe734b8a36a464bb59aa1d130c3de2daa13 Mon Sep 17 00:00:00 2001 From: "bfulgham@apple.com" Date: Thu, 27 Mar 2014 17:51:38 +0000 Subject: [PATCH] [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. git-svn-id: https://svn.webkit.org/repository/webkit/trunk@166363 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- Source/WebInspectorUI/ChangeLog | 10 ++++++++++ .../WebInspectorUI.vcxproj/WebInspectorUIPostBuild.cmd | 5 +++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/Source/WebInspectorUI/ChangeLog b/Source/WebInspectorUI/ChangeLog index 09e1a58..99d3064 100644 --- a/Source/WebInspectorUI/ChangeLog +++ b/Source/WebInspectorUI/ChangeLog @@ -1,3 +1,13 @@ +2014-03-27 Brent Fulgham + + [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 Web Inspector: AXI: add support for aria-activedescendant and reconcile UI/testing with parentNode diff --git a/Source/WebInspectorUI/WebInspectorUI.vcxproj/WebInspectorUIPostBuild.cmd b/Source/WebInspectorUI/WebInspectorUI.vcxproj/WebInspectorUIPostBuild.cmd index 723210f..f217f18 100644 --- a/Source/WebInspectorUI/WebInspectorUI.vcxproj/WebInspectorUIPostBuild.cmd +++ b/Source/WebInspectorUI/WebInspectorUI.vcxproj/WebInspectorUIPostBuild.cmd @@ -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%\JavaScriptCore\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%\JavaScriptCore\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" -- 1.8.3.1