4aa925fbda761fdfaa94c133aa9554a90e5388d3
[platform/upstream/coreclr.git] / tests / src / dir.targets
1 <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2   <!-- Default priority building values. -->
3   <PropertyGroup>
4     <CLRTestKind Condition="'$(CLRTestKind)' == '' and '$(OutputType)' == 'Library'">SharedLibrary</CLRTestKind>
5     <CLRTestKind Condition="'$(CLRTestKind)' == ''">BuildAndRun</CLRTestKind>
6     <CLRTestPriority Condition="'$(CLRTestPriority)' == ''">0</CLRTestPriority>
7   </PropertyGroup>
8
9   <!-- All CLRTests need to be of a certain "kind". These kinds are enumerated below.
10   By default all tests are BuildAndRun. This means that the build system will Build them
11   and construct a run-batch-script for them. -->
12   <Choose>
13     <When Condition=" '$(CLRTestKind)'=='SharedLibrary'">
14       <PropertyGroup>
15         <_CLRTestCompilesSource>true</_CLRTestCompilesSource>
16         <_CLRTestNeedsToRun>false</_CLRTestNeedsToRun>
17         <GenerateRunScript>false</GenerateRunScript>
18         <_CLRTestBuildsExecutable>false</_CLRTestBuildsExecutable>
19       </PropertyGroup>
20     </When>
21     <When Condition=" '$(CLRTestKind)'=='BuildAndRun' ">
22       <PropertyGroup>
23         <GenerateRunScript>true</GenerateRunScript>
24         <_CLRTestNeedsToRun>true</_CLRTestNeedsToRun>
25         <_CLRTestCompilesSource>true</_CLRTestCompilesSource>
26         <_CLRTestBuildsExecutable>true</_CLRTestBuildsExecutable>
27       </PropertyGroup>
28     </When>
29     <When Condition=" '$(CLRTestKind)'=='BuildOnly'">
30       <PropertyGroup>
31         <_CLRTestNeedsToRun>false</_CLRTestNeedsToRun>
32         <GenerateRunScript>false</GenerateRunScript>
33         <_CLRTestCompilesSource>true</_CLRTestCompilesSource>
34         <_CLRTestBuildsExecutable>true</_CLRTestBuildsExecutable>
35       </PropertyGroup>
36     </When>
37     <When Condition=" '$(CLRTestKind)'=='RunOnly' ">
38       <PropertyGroup>
39         <GenerateRunScript>true</GenerateRunScript>
40         <SkipSigning>true</SkipSigning>
41         <_CLRTestBuildsExecutable>false</_CLRTestBuildsExecutable>
42         <_CLRTestNeedsToRun>true</_CLRTestNeedsToRun>
43         <_CLRTestCompilesSource>false</_CLRTestCompilesSource>
44       </PropertyGroup>
45     </When>
46   </Choose>
47   
48   <PropertyGroup> 
49     <_CLRTestNeedsProjectToRun>false</_CLRTestNeedsProjectToRun>
50     <_CLRTestNeedsProjectToRun Condition=" '$(_CLRTestNeedsToRun)' and '!$(_CLRTestBuildsExecutable)' ">true</_CLRTestNeedsProjectToRun>
51   </PropertyGroup>
52
53   <PropertyGroup>
54     <!-- Since bug in Roslyn for Linux empty DebugType property leads to build failure. See issue Roslyn@20343 -->
55     <DebugType Condition=" '$(DebugType)' == '' and '$(RunningOnUnix)' == 'true' ">None</DebugType>
56   </PropertyGroup>
57
58   <!--
59   If it needs ProjectToRun, turn the project into a ProjectReference so it gets built
60   -->
61   <ItemGroup Condition=" $(_CLRTestNeedsProjectToRun) ">
62     <ProjectReference Include="$(CLRTestProjectToRun)">
63       <Private>false</Private>
64     </ProjectReference>
65   </ItemGroup>
66         
67   <PropertyGroup>
68     <ErrorIfBuildToolsRestoredFromIndividualProject Condition="!Exists('$(ToolsDir)')">true</ErrorIfBuildToolsRestoredFromIndividualProject>
69   </PropertyGroup>
70   
71   <Import Project="..\dir.targets" />
72
73   <Target Name="CreateManifestResourceNames" />
74   <Target Name="CoreCompile" />
75   
76   <!-- If we are a run-only, that depends on another project, this is the "Build" we use. I.e. build all dependency projects, absolutely.
77   -->
78
79   <PropertyGroup> 
80     <BuildAllProjects Condition=" '$(BuildAllProjects)' == ''">false</BuildAllProjects>
81     <_WillCLRTestProjectBuild Condition="'$(_WillCLRTestProjectBuild)' == ''">false</_WillCLRTestProjectBuild>
82     <_WillCLRTestProjectBuild Condition="'$(BuildAllProjects)' != true">true</_WillCLRTestProjectBuild>
83     <_WillCLRTestProjectBuild Condition="'$(DisableProjectBuild)' != true And '$(BuildAllProjects)' == true And '$(CLRTestPriority)' &lt;= '$(CLRTestPriorityToBuild)'">true</_WillCLRTestProjectBuild>
84   </PropertyGroup>
85
86   <Target Name="Build" Condition="('$(CLRTestKind)'=='RunOnly') And '$(_WillCLRTestProjectBuild)'">
87     <MSBuild Projects="@(ProjectReference)" />
88     <MakeDir Condition="'$(CLRTestKind)' == 'RunOnly'" ContinueOnError="false" Directories="$(OutputPath)" />
89   </Target>
90   
91   <!-- We will use an imported build here in the instance that we have source that we need to build, and we are the correct priority...OR if we are being asked to build for
92   a test with a higher priority. -->
93   <Import Project="$(ToolsDir)Build.Common.targets" Condition="('$(CLRTestKind)'!='RunOnly') And $(_CLRTestCompilesSource) And ('$(_WillCLRTestProjectBuild)')"/>
94
95
96   <Import Project="..\override.targets" Condition="Exists('..\override.targets')"/>
97
98   <!-- We enable auto-unification of assembly references after importing the common targets.  Binding redirects are not needed
99        for coreclr since it auto-unifies, so the warnings we get without this setting are just noise -->
100   <PropertyGroup>
101     <AutoUnifyAssemblyReferences>true</AutoUnifyAssemblyReferences>
102   </PropertyGroup>
103
104   <!-- Project language -->
105   <!-- TODO: This might just be the Language property -->
106   <PropertyGroup Condition="'$(ProjectLanguage)' == ''">
107     <ProjectLanguage Condition="'$(MSBuildProjectExtension)' == '.ilproj' OR '$(Language)' == 'IL'">IL</ProjectLanguage>
108     <ProjectLanguage Condition="'$(MSBuildProjectExtension)' == '.csproj' OR '$(Language)' == 'C#' OR '$(ProjectLanguage)'==''">CSharp</ProjectLanguage>
109   </PropertyGroup>
110   
111   <Import Project="$(ProjectDir)src\IL.targets" Condition="'$(ProjectLanguage)' == 'IL' And '$(CLRTestPriority)' &lt;= '$(CLRTestPriorityToBuild)'" />
112
113
114   <Import Project="CLRTest.Execute.targets" />
115   <Target Name="CreateExecuteScript" 
116           AfterTargets="Build"
117           Condition="'$(GenerateRunScript)' != 'false' And ('$(_WillCLRTestProjectBuild)')"
118           DependsOnTargets="GenerateExecutionScriptsInternal" />
119
120   <Target Name="CopyNativeProjectBinaries">
121      <ItemGroup>
122         <NativeProjectBinaries Include="$(NativeProjectOutputFolder)\**\*.*" />
123      </ItemGroup>
124
125      <Error  Text="The native project files are missing in $(NativeProjectOutputFolder) please run build from the root of the repo at least once"
126              Condition="'@(NativeProjectBinaries)' == ''" />
127
128      <Copy
129         SourceFiles="@(NativeProjectBinaries)"
130         DestinationFiles="@(NativeProjectBinaries -> '$(OutDir)%(RecursiveDir)%(Filename)%(Extension)')"
131         SkipUnchangedFiles="$(SkipCopyUnchangedFiles)"
132         OverwriteReadOnlyFiles="$(OverwriteReadOnlyFiles)"
133         Retries="$(CopyRetryCount)"
134         RetryDelayMilliseconds="$(CopyRetryDelayMilliseconds)"
135         UseHardlinksIfPossible="$(CreateHardLinksForCopyFilesToOutputDirectoryIfPossible)">
136         <Output TaskParameter="DestinationFiles" ItemName="FileWrites" />
137      </Copy>
138   </Target>
139
140   <Target Name="ResolveCmakeNativeProjectReference"
141           Condition="'@(ProjectReference)' != ''"
142           BeforeTargets="BeforeResolveReferences;BeforeClean" >
143      <ItemGroup>
144         <NativeProjectReference Include="%(ProjectReference.Identity)" Condition="$([System.String]::Copy(%(ProjectReference.FileName)).ToUpper()) == 'CMAKELISTS'" />
145         <ProjectReference Remove="%(NativeProjectReference.Identity)" />
146         <NativeProjectReferenceNormalized Include="@(NativeProjectReference -> '%(FullPath)')" />
147      </ItemGroup>
148   </Target>
149
150   <Target Name="ConsolidateNativeProjectReference"
151           Condition="'@(NativeProjectReferenceNormalized)' != ''"
152           BeforeTargets="Build" >
153      <ItemGroup>
154         <NativeProjectOutputFoldersToCopy Include="$([System.String]::Copy('%(NativeProjectReferenceNormalized.RelativeDir)').Replace($(SourceDir),$(__NativeTestIntermediatesDir)\src\))" Condition="'$(RunningOnUnix)' == 'true'" />
155         <NativeProjectOutputFoldersToCopy Include="$([System.String]::Copy('%(NativeProjectReferenceNormalized.RelativeDir)').Replace($(SourceDir),$(__NativeTestIntermediatesDir)\src\))$(Configuration)\" Condition="'$(RunningOnUnix)' != 'true'" />
156      </ItemGroup>
157
158     <Message Text= "Full native project references are :%(NativeProjectReferenceNormalized.Identity)" />
159     <Message Text= "Native binaries will be copied from :%(NativeProjectOutputFoldersToCopy.Identity)" />
160    <MSBuild Projects="$(MSBuildProjectFile)" Targets="CopyNativeProjectBinaries" Properties="NativeProjectOutputFolder=%(NativeProjectOutputFoldersToCopy.Identity)" Condition="'@(NativeProjectReference)' != '' And '$(RunningOnUnix)' != 'true'" />
161
162   </Target>
163
164   <PropertyGroup>
165      <PrepareForRunDependsOn>$(PrepareForRunDependsOn);ResetReferenceCopyLocalPaths</PrepareForRunDependsOn>
166   </PropertyGroup>
167
168   <Target Name="ResetReferenceCopyLocalPaths"
169           Condition="'@(ReferenceCopyLocalPaths)' != ''"
170           BeforeTargets="_CopyFilesMarkedCopyLocal">
171     <ItemGroup>
172        <ReferenceCopyLocalPaths Remove="@(ReferenceCopyLocalPaths)" Condition="'%(ReferenceCopyLocalPaths.CopyLocal)' != 'true'"/>
173     </ItemGroup>
174   </Target>
175
176   <Target Name="UpdateReferenceItems"
177           BeforeTargets="BeforeResolveReferences"
178   >
179     <ItemGroup>
180       <Reference Include="$(TargetingPackPath)/*.dll" >
181         <Private>false</Private>
182       </Reference>
183     </ItemGroup>
184
185   </Target>
186
187   <Target Name="AfterBuild">
188      <Copy SourceFiles="$(AssemblyName).reflect.xml"
189            DestinationFolder="$(OutputPath)"
190        Condition="Exists('$(AssemblyName).reflect.xml')"/>
191   </Target>
192
193   <PropertyGroup>
194     <ProjectAssetsFile>$(SourceDir)Common\test_dependencies\obj\project.assets.json</ProjectAssetsFile>
195   </PropertyGroup>
196
197   <PropertyGroup Condition="'$(ReferenceSystemPrivateCoreLib)' == 'true'">
198     <ProjectAssetsFile></ProjectAssetsFile >
199   </PropertyGroup>
200
201 </Project>