Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Move InjectedBundle's settings to a vsprops file
This will make it easier to change settings for all configurations, and to add new configurations. Fixes <http://webkit.org/b/42748> InjectedBundle should use vsprops files Reviewed by Darin Adler. * WebKitTestRunner/Configurations/InjectedBundleCommon.vsprops: Added. Moved settings here... * WebKitTestRunner/InjectedBundle/win/InjectedBundle.vcproj: ...from here. Canonical link: https://commits.webkit.org/54665@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@63828 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information
Showing
with
59 additions
and 20 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 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
@@ -0,0 +1,25 @@ | ||
<?xml version="1.0" encoding="Windows-1252"?> | ||
<VisualStudioPropertySheet | ||
ProjectType="Visual C++" | ||
Version="8.00" | ||
Name="InjectedBundleCommon" | ||
> | ||
<Tool | ||
Name="VCCLCompilerTool" | ||
AdditionalIncludeDirectories=""$(ProjectDir)\..";"$(ProjectDir)\..\..";"$(ProjectDir)\..\Bindings";"$(WebKitOutputDir)\Include";"$(WebKitOutputDir)\Include\private";"$(WebKitOutputDir)\Include\WebCore\ForwardingHeaders";"$(WebKitLibrariesDir)\include";"$(WebKitOutputDir)\obj\InjectedBundle\DerivedSources\"" | ||
ForcedIncludeFiles="WebKitTestRunnerPrefix.h" | ||
/> | ||
<Tool | ||
Name="VCLinkerTool" | ||
AdditionalDependencies="JavaScriptCore$(WebKitDLLConfigSuffix).lib WebKit$(WebKitDLLConfigSuffix).lib CoreFoundation$(LibraryConfigSuffix).lib" | ||
OutputFile="$(OutDir)\$(ProjectName)$(WebKitConfigSuffix).dll" | ||
/> | ||
<Tool | ||
Name="VCPostBuildEventTool" | ||
CommandLine="if exist "$(WebKitOutputDir)\buildfailed" del "$(WebKitOutputDir)\buildfailed"" | ||
/> | ||
<Tool | ||
Name="VCPreBuildEventTool" | ||
CommandLine="%SystemDrive%\cygwin\bin\which.exe bash
if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH%
cmd /c
if exist "$(WebKitOutputDir)\buildfailed" grep XX$(ProjectName)XX "$(WebKitOutputDir)\buildfailed"
if errorlevel 1 exit 1
echo XX$(ProjectName)XX > "$(WebKitOutputDir)\buildfailed"
" | ||
/> | ||
</VisualStudioPropertySheet> |
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