Title: [159941] trunk/Source/WebKit
Revision
159941
Author
[email protected]
Date
2013-12-02 10:47:01 -0800 (Mon, 02 Dec 2013)

Log Message

[Win] WebKit Project doesn't copy resource bundle
https://bugs.webkit.org/show_bug.cgi?id=125078

Reviewed by Jer Noble.

* WebKit.vcxproj/WebKit/WebKitPostBuild.cmd: Correct post-build step
to copy WebKit.resources to build target.

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (159940 => 159941)


--- trunk/Source/WebKit/ChangeLog	2013-12-02 18:23:45 UTC (rev 159940)
+++ trunk/Source/WebKit/ChangeLog	2013-12-02 18:47:01 UTC (rev 159941)
@@ -1,3 +1,13 @@
+2013-12-02  Brent Fulgham  <[email protected]>
+
+        [Win] WebKit Project doesn't copy resource bundle
+        https://bugs.webkit.org/show_bug.cgi?id=125078
+
+        Reviewed by Jer Noble.
+
+        * WebKit.vcxproj/WebKit/WebKitPostBuild.cmd: Correct post-build step
+        to copy WebKit.resources to build target.
+
 2013-11-28  Thiago de Barros Lacerda  <[email protected]>
 
         Building EFL Webkit again with mediastream enabled

Modified: trunk/Source/WebKit/WebKit.vcxproj/WebKit/WebKitPostBuild.cmd (159940 => 159941)


--- trunk/Source/WebKit/WebKit.vcxproj/WebKit/WebKitPostBuild.cmd	2013-12-02 18:23:45 UTC (rev 159940)
+++ trunk/Source/WebKit/WebKit.vcxproj/WebKit/WebKitPostBuild.cmd	2013-12-02 18:47:01 UTC (rev 159941)
@@ -1,5 +1,7 @@
 mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebKit"
 
+set ResourcesDirectory=%CONFIGURATIONBUILDDIR%\bin32\WebKit.resources
+
 xcopy /y /d "%PROJECTDIR%\..\..\win\WebLocalizableStrings.h" "%CONFIGURATIONBUILDDIR%\include\WebKit"
 xcopy /y /d "%PROJECTDIR%\..\..\win\WebKitGraphics.h" "%CONFIGURATIONBUILDDIR%\include\WebKit"
 xcopy /y /d "%PROJECTDIR%\..\..\win\WebKitCOMAPI.h" "%CONFIGURATIONBUILDDIR%\include\WebKit"
@@ -11,6 +13,10 @@
 xcopy /y /d "%CONFIGURATIONBUILDDIR%\include\WebCore\npruntime_internal.h" "%CONFIGURATIONBUILDDIR%\include\WebKit"
 xcopy /y /d "%CONFIGURATIONBUILDDIR%\include\WebCore\nptypes.h" "%CONFIGURATIONBUILDDIR%\include\WebKit"
 
+echo Copying resources...
+mkdir "%ResourcesDirectory%" 2>NUL
+xcopy /y /d "%PROJECTDIR%\..\..\win\WebKit.resources\*" "%ResourcesDirectory%" >NUL
+
 if exist "%WEBKIT_LIBRARIES%\tools\VersionStamper\VersionStamper.exe" "%WEBKIT_LIBRARIES%\tools\VersionStamper\VersionStamper.exe" --verbose "%TARGETPATH%"
 
 if exist "%CONFIGURATIONBUILDDIR%\buildfailed" del "%CONFIGURATIONBUILDDIR%\buildfailed"
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to