From 9f3f27d9a6627df6955f1c4492689c607a3a36db Mon Sep 17 00:00:00 2001 From: "achristensen@apple.com" Date: Tue, 15 Sep 2015 00:29:00 +0000 Subject: [PATCH] Fix Windows clean build after r189746 * WebCore.vcxproj/copyForwardingHeaders.cmd: Copy headers from new legacy directory. git-svn-id: https://svn.webkit.org/repository/webkit/trunk@189764 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- Source/WebCore/ChangeLog | 7 +++++++ Source/WebCore/WebCore.vcxproj/copyForwardingHeaders.cmd | 1 + 2 files changed, 8 insertions(+) diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog index 2715890..c548def 100644 --- a/Source/WebCore/ChangeLog +++ b/Source/WebCore/ChangeLog @@ -1,3 +1,10 @@ +2015-09-14 Alex Christensen + + Fix Windows clean build after r189746 + + * WebCore.vcxproj/copyForwardingHeaders.cmd: + Copy headers from new legacy directory. + 2015-09-14 Chris Dumez window.HTMLDetailsElement should exist diff --git a/Source/WebCore/WebCore.vcxproj/copyForwardingHeaders.cmd b/Source/WebCore/WebCore.vcxproj/copyForwardingHeaders.cmd index 126eac5..f4fa7ac 100644 --- a/Source/WebCore/WebCore.vcxproj/copyForwardingHeaders.cmd +++ b/Source/WebCore/WebCore.vcxproj/copyForwardingHeaders.cmd @@ -22,6 +22,7 @@ echo Copying Forwarding Headers... @xcopy /y /d "%ProjectDir%..\Modules\gamepad\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul @xcopy /y /d "%ProjectDir%..\Modules\geolocation\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul @xcopy /y /d "%ProjectDir%..\Modules\indexeddb\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul +@xcopy /y /d "%ProjectDir%..\Modules\indexeddb\legacy\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul @xcopy /y /d "%ProjectDir%..\Modules\mediacontrols\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul @xcopy /y /d "%ProjectDir%..\Modules\mediasource\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul @xcopy /y /d "%ProjectDir%..\Modules\navigatorcontentutils\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul -- 1.8.3.1