Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
2011-03-04 Steve Falkenburg <sfalken@apple.com>
Reviewed by Darin Adler. Adopt VersionStamper tool for Windows WebKit DLLs https://bugs.webkit.org/show_bug.cgi?id=55784 Calculate the WebKit version for the useragent via autoversion.h instead of reading it back from the DLL. We now use a tool to stamp the version number onto the Apple WebKit DLLs during the post-build step. * WebKit.vcproj/WebKit.rc: Removed. This file wasn't used. * WebKit.vcproj/WebKitLibCommon.vsprops: Fetch version from a string resource. * WebView.cpp: (WebView::standardUserAgentWithApplicationName): Use __BUILD_NUMBER_SHORT__ for the version. (osVersion): Removed 2011-03-04 Steve Falkenburg <sfalken@apple.com> Reviewed by Darin Adler. Adopt VersionStamper tool for Windows WebKit DLLs https://bugs.webkit.org/show_bug.cgi?id=55784 <rdar://problem/9021320> We now use a tool to stamp the version number onto the Apple WebKit DLLs during the post-build step. Fetch the WebKit version from a string resource instead of the version resource. * UIProcess/win/WebPageProxyWin.cpp: (WebKit::userVisibleWebKitVersionString): Fetch version from a string resource. * win/WebKit2.rc: Removed version, added stringtable. * win/WebKit2WebProcess.rc: Removed. * win/WebKit2WebProcess.vcproj: * win/WebKit2WebProcessPostBuild.cmd: Don't run autoversion script. It isn't used in this project. * win/WebKit2WebProcessPreBuild.cmd: Stamp version. * win/WebKitPostBuild.cmd: Stamp version. Canonical link: https://commits.webkit.org/70289@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@80395 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information
Steve Falkenburg
committed
Mar 5, 2011
1 parent
c2dbd02
commit 5291038
Showing
13 changed files
with
65 additions
and
252 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
mkdir 2>NUL "%OUTDIR%\..\bin\WebKit2WebProcess.resources" | ||
xcopy /y /d "%PROJECTDIR%\WebKit2WebProcess.resources\*" "%OUTDIR%\..\bin\WebKit2WebProcess.resources" | ||
if exist "%WEBKITLIBRARIESDIR%\tools\VersionStamper\VersionStamper.exe" "%WEBKITLIBRARIESDIR%\tools\VersionStamper\VersionStamper.exe" --verbose "%TARGETPATH%" | ||
|
||
if exist "%CONFIGURATIONBUILDDIR%\buildfailed" del "%CONFIGURATIONBUILDDIR%\buildfailed" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
if exist "%WEBKITLIBRARIESDIR%\tools\VersionStamper\VersionStamper.exe" "%WEBKITLIBRARIESDIR%\tools\VersionStamper\VersionStamper.exe" --verbose "%TARGETPATH%" | ||
if exist "%CONFIGURATIONBUILDDIR%\buildfailed" del "%CONFIGURATIONBUILDDIR%\buildfailed" |