blob: 37645c31fd0ac0730a3fb870ae206b096df135bf [file] [log] [blame]
Craig Tillerf4fc5d22015-09-23 09:36:31 -07001<?xml version="1.0" encoding="utf-8"?>
Craig Tiller02a7bed2015-08-31 15:54:05 -07002<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3 <Import Project="..\..\..\vsprojects\packages\grpc.dependencies.openssl.1.0.2.3\build\native\grpc.dependencies.openssl.props" Condition="Exists('..\..\..\vsprojects\packages\grpc.dependencies.openssl.1.0.2.3\build\native\1.0.2.3.props')" />
4 <ItemGroup Label="ProjectConfigurations">
5 <ProjectConfiguration Include="Debug-DLL|Win32">
6 <Configuration>Debug-DLL</Configuration>
7 <Platform>Win32</Platform>
8 </ProjectConfiguration>
9 <ProjectConfiguration Include="Debug-DLL|x64">
10 <Configuration>Debug-DLL</Configuration>
11 <Platform>x64</Platform>
12 </ProjectConfiguration>
13 <ProjectConfiguration Include="Release-DLL|Win32">
14 <Configuration>Release-DLL</Configuration>
15 <Platform>Win32</Platform>
16 </ProjectConfiguration>
17 <ProjectConfiguration Include="Release-DLL|x64">
18 <Configuration>Release-DLL</Configuration>
19 <Platform>x64</Platform>
20 </ProjectConfiguration>
21 <ProjectConfiguration Include="Debug|Win32">
22 <Configuration>Debug</Configuration>
23 <Platform>Win32</Platform>
24 </ProjectConfiguration>
25 <ProjectConfiguration Include="Debug|x64">
26 <Configuration>Debug</Configuration>
27 <Platform>x64</Platform>
28 </ProjectConfiguration>
29 <ProjectConfiguration Include="Release|Win32">
30 <Configuration>Release</Configuration>
31 <Platform>Win32</Platform>
32 </ProjectConfiguration>
33 <ProjectConfiguration Include="Release|x64">
34 <Configuration>Release</Configuration>
35 <Platform>x64</Platform>
36 </ProjectConfiguration>
37 </ItemGroup>
38 <PropertyGroup Label="Globals">
39 <ProjectGuid>{29D16885-7228-4C31-81ED-5F9187C7F2A9}</ProjectGuid>
40 </PropertyGroup>
41 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
42 <PropertyGroup Condition="'$(VisualStudioVersion)' == '10.0'" Label="Configuration">
43 <PlatformToolset>v100</PlatformToolset>
44 </PropertyGroup>
45 <PropertyGroup Condition="'$(VisualStudioVersion)' == '11.0'" Label="Configuration">
46 <PlatformToolset>v110</PlatformToolset>
47 </PropertyGroup>
48 <PropertyGroup Condition="'$(VisualStudioVersion)' == '12.0'" Label="Configuration">
49 <PlatformToolset>v120</PlatformToolset>
50 </PropertyGroup>
51 <PropertyGroup Condition="'$(Configuration)'=='Debug'" Label="Configuration">
52 <ConfigurationType>StaticLibrary</ConfigurationType>
53 <UseDebugLibraries>true</UseDebugLibraries>
54 <CharacterSet>Unicode</CharacterSet>
55 </PropertyGroup>
56 <PropertyGroup Condition="'$(Configuration)'=='Release'" Label="Configuration">
57 <ConfigurationType>StaticLibrary</ConfigurationType>
58 <UseDebugLibraries>false</UseDebugLibraries>
59 <WholeProgramOptimization>true</WholeProgramOptimization>
60 <CharacterSet>Unicode</CharacterSet>
61 </PropertyGroup>
62 <PropertyGroup Condition="'$(Configuration)'=='Debug-DLL'" Label="Configuration">
63 <ConfigurationType>StaticLibrary</ConfigurationType>
64 <UseDebugLibraries>true</UseDebugLibraries>
65 <CharacterSet>Unicode</CharacterSet>
66 </PropertyGroup>
67 <PropertyGroup Condition="'$(Configuration)'=='Release-DLL'" Label="Configuration">
68 <ConfigurationType>StaticLibrary</ConfigurationType>
69 <UseDebugLibraries>false</UseDebugLibraries>
70 <WholeProgramOptimization>true</WholeProgramOptimization>
71 <CharacterSet>Unicode</CharacterSet>
72 </PropertyGroup>
73 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
74 <ImportGroup Label="ExtensionSettings">
75 </ImportGroup>
76 <ImportGroup Label="PropertySheets">
77 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
78 <Import Project="..\..\..\vsprojects\global.props" />
79 <Import Project="..\..\..\vsprojects\winsock.props" />
80 </ImportGroup>
81 <PropertyGroup Label="UserMacros" />
82 <PropertyGroup Condition="'$(Configuration)'=='Debug'">
83 <TargetName>grpc</TargetName>
84 <Linkage-grpc_dependencies_zlib>static</Linkage-grpc_dependencies_zlib>
85 <Configuration-grpc_dependencies_zlib>Debug</Configuration-grpc_dependencies_zlib>
86 <Configuration-grpc_dependencies_openssl>Debug</Configuration-grpc_dependencies_openssl>
87 </PropertyGroup>
88 <PropertyGroup Condition="'$(Configuration)'=='Release'">
89 <TargetName>grpc</TargetName>
90 <Linkage-grpc_dependencies_zlib>static</Linkage-grpc_dependencies_zlib>
91 <Configuration-grpc_dependencies_zlib>Debug</Configuration-grpc_dependencies_zlib>
92 <Configuration-grpc_dependencies_openssl>Debug</Configuration-grpc_dependencies_openssl>
93 </PropertyGroup>
94 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug-DLL|Win32'">
95 <ClCompile>
96 <PrecompiledHeader>NotUsing</PrecompiledHeader>
97 <WarningLevel>Level3</WarningLevel>
98 <Optimization>Disabled</Optimization>
99 <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;_USE_32BIT_TIME_T;%(PreprocessorDefinitions)</PreprocessorDefinitions>
100 <SDLCheck>true</SDLCheck>
101 <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
Craig Tillerf4fc5d22015-09-23 09:36:31 -0700102 <TreatWarningAsError>true</TreatWarningAsError>
Craig Tiller8f12f772015-09-25 11:17:32 -0700103 <DebugInformationFormat Condition="$(Jenkins)">None</DebugInformationFormat>
Craig Tiller02a7bed2015-08-31 15:54:05 -0700104 </ClCompile>
105 <Link>
106 <SubSystem>Windows</SubSystem>
Craig Tiller8f12f772015-09-25 11:17:32 -0700107 <GenerateDebugInformation Condition="!$(Jenkins)">true</GenerateDebugInformation>
108 <GenerateDebugInformation Condition="$(Jenkins)">false</GenerateDebugInformation>
Craig Tiller02a7bed2015-08-31 15:54:05 -0700109 </Link>
110 </ItemDefinitionGroup>
111 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug-DLL|x64'">
112 <ClCompile>
113 <PrecompiledHeader>NotUsing</PrecompiledHeader>
114 <WarningLevel>Level3</WarningLevel>
115 <Optimization>Disabled</Optimization>
116 <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
117 <SDLCheck>true</SDLCheck>
118 <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
Craig Tillerf4fc5d22015-09-23 09:36:31 -0700119 <TreatWarningAsError>true</TreatWarningAsError>
Craig Tiller8f12f772015-09-25 11:17:32 -0700120 <DebugInformationFormat Condition="$(Jenkins)">None</DebugInformationFormat>
Craig Tiller02a7bed2015-08-31 15:54:05 -0700121 </ClCompile>
122 <Link>
123 <SubSystem>Windows</SubSystem>
Craig Tiller8f12f772015-09-25 11:17:32 -0700124 <GenerateDebugInformation Condition="!$(Jenkins)">true</GenerateDebugInformation>
125 <GenerateDebugInformation Condition="$(Jenkins)">false</GenerateDebugInformation>
Craig Tiller02a7bed2015-08-31 15:54:05 -0700126 </Link>
127 </ItemDefinitionGroup>
128 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release-DLL|Win32'">
129 <ClCompile>
130 <WarningLevel>Level3</WarningLevel>
131 <PrecompiledHeader>NotUsing</PrecompiledHeader>
132 <Optimization>MaxSpeed</Optimization>
133 <FunctionLevelLinking>true</FunctionLevelLinking>
134 <IntrinsicFunctions>true</IntrinsicFunctions>
135 <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;_USE_32BIT_TIME_T;%(PreprocessorDefinitions)</PreprocessorDefinitions>
136 <SDLCheck>true</SDLCheck>
137 <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
Craig Tillerf4fc5d22015-09-23 09:36:31 -0700138 <TreatWarningAsError>true</TreatWarningAsError>
Craig Tiller8f12f772015-09-25 11:17:32 -0700139 <DebugInformationFormat Condition="$(Jenkins)">None</DebugInformationFormat>
Craig Tiller02a7bed2015-08-31 15:54:05 -0700140 </ClCompile>
141 <Link>
142 <SubSystem>Windows</SubSystem>
Craig Tiller8f12f772015-09-25 11:17:32 -0700143 <GenerateDebugInformation Condition="!$(Jenkins)">true</GenerateDebugInformation>
144 <GenerateDebugInformation Condition="$(Jenkins)">false</GenerateDebugInformation>
Craig Tiller02a7bed2015-08-31 15:54:05 -0700145 <EnableCOMDATFolding>true</EnableCOMDATFolding>
146 <OptimizeReferences>true</OptimizeReferences>
147 </Link>
148 </ItemDefinitionGroup>
149 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release-DLL|x64'">
150 <ClCompile>
151 <WarningLevel>Level3</WarningLevel>
152 <PrecompiledHeader>NotUsing</PrecompiledHeader>
153 <Optimization>MaxSpeed</Optimization>
154 <FunctionLevelLinking>true</FunctionLevelLinking>
155 <IntrinsicFunctions>true</IntrinsicFunctions>
156 <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
157 <SDLCheck>true</SDLCheck>
158 <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
Craig Tillerf4fc5d22015-09-23 09:36:31 -0700159 <TreatWarningAsError>true</TreatWarningAsError>
Craig Tiller8f12f772015-09-25 11:17:32 -0700160 <DebugInformationFormat Condition="$(Jenkins)">None</DebugInformationFormat>
Craig Tiller02a7bed2015-08-31 15:54:05 -0700161 </ClCompile>
162 <Link>
163 <SubSystem>Windows</SubSystem>
Craig Tiller8f12f772015-09-25 11:17:32 -0700164 <GenerateDebugInformation Condition="!$(Jenkins)">true</GenerateDebugInformation>
165 <GenerateDebugInformation Condition="$(Jenkins)">false</GenerateDebugInformation>
Craig Tiller02a7bed2015-08-31 15:54:05 -0700166 <EnableCOMDATFolding>true</EnableCOMDATFolding>
167 <OptimizeReferences>true</OptimizeReferences>
168 </Link>
169 </ItemDefinitionGroup>
170 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
171 <ClCompile>
172 <PrecompiledHeader>NotUsing</PrecompiledHeader>
173 <WarningLevel>Level3</WarningLevel>
174 <Optimization>Disabled</Optimization>
175 <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;_USE_32BIT_TIME_T;%(PreprocessorDefinitions)</PreprocessorDefinitions>
176 <SDLCheck>true</SDLCheck>
177 <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
Craig Tiller82f9bd82015-09-23 09:31:51 -0700178 <TreatWarningAsError>true</TreatWarningAsError>
Craig Tiller8f12f772015-09-25 11:17:32 -0700179 <DebugInformationFormat Condition="$(Jenkins)">None</DebugInformationFormat>
Craig Tiller02a7bed2015-08-31 15:54:05 -0700180 </ClCompile>
181 <Link>
182 <SubSystem>Windows</SubSystem>
Craig Tiller8f12f772015-09-25 11:17:32 -0700183 <GenerateDebugInformation Condition="!$(Jenkins)">true</GenerateDebugInformation>
184 <GenerateDebugInformation Condition="$(Jenkins)">false</GenerateDebugInformation>
Craig Tiller02a7bed2015-08-31 15:54:05 -0700185 </Link>
186 </ItemDefinitionGroup>
187 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
188 <ClCompile>
189 <PrecompiledHeader>NotUsing</PrecompiledHeader>
190 <WarningLevel>Level3</WarningLevel>
191 <Optimization>Disabled</Optimization>
192 <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
193 <SDLCheck>true</SDLCheck>
194 <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
Craig Tillerf4fc5d22015-09-23 09:36:31 -0700195 <TreatWarningAsError>true</TreatWarningAsError>
Craig Tiller8f12f772015-09-25 11:17:32 -0700196 <DebugInformationFormat Condition="$(Jenkins)">None</DebugInformationFormat>
Craig Tiller02a7bed2015-08-31 15:54:05 -0700197 </ClCompile>
198 <Link>
199 <SubSystem>Windows</SubSystem>
Craig Tiller8f12f772015-09-25 11:17:32 -0700200 <GenerateDebugInformation Condition="!$(Jenkins)">true</GenerateDebugInformation>
201 <GenerateDebugInformation Condition="$(Jenkins)">false</GenerateDebugInformation>
Craig Tiller02a7bed2015-08-31 15:54:05 -0700202 </Link>
203 </ItemDefinitionGroup>
204 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
205 <ClCompile>
206 <WarningLevel>Level3</WarningLevel>
207 <PrecompiledHeader>NotUsing</PrecompiledHeader>
208 <Optimization>MaxSpeed</Optimization>
209 <FunctionLevelLinking>true</FunctionLevelLinking>
210 <IntrinsicFunctions>true</IntrinsicFunctions>
211 <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;_USE_32BIT_TIME_T;%(PreprocessorDefinitions)</PreprocessorDefinitions>
212 <SDLCheck>true</SDLCheck>
213 <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
Craig Tillerf4fc5d22015-09-23 09:36:31 -0700214 <TreatWarningAsError>true</TreatWarningAsError>
Craig Tiller8f12f772015-09-25 11:17:32 -0700215 <DebugInformationFormat Condition="$(Jenkins)">None</DebugInformationFormat>
Craig Tiller02a7bed2015-08-31 15:54:05 -0700216 </ClCompile>
217 <Link>
218 <SubSystem>Windows</SubSystem>
Craig Tiller8f12f772015-09-25 11:17:32 -0700219 <GenerateDebugInformation Condition="!$(Jenkins)">true</GenerateDebugInformation>
220 <GenerateDebugInformation Condition="$(Jenkins)">false</GenerateDebugInformation>
Craig Tiller02a7bed2015-08-31 15:54:05 -0700221 <EnableCOMDATFolding>true</EnableCOMDATFolding>
222 <OptimizeReferences>true</OptimizeReferences>
223 </Link>
224 </ItemDefinitionGroup>
225 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
226 <ClCompile>
227 <WarningLevel>Level3</WarningLevel>
228 <PrecompiledHeader>NotUsing</PrecompiledHeader>
229 <Optimization>MaxSpeed</Optimization>
230 <FunctionLevelLinking>true</FunctionLevelLinking>
231 <IntrinsicFunctions>true</IntrinsicFunctions>
232 <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
233 <SDLCheck>true</SDLCheck>
234 <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
Craig Tillerf4fc5d22015-09-23 09:36:31 -0700235 <TreatWarningAsError>true</TreatWarningAsError>
Craig Tiller8f12f772015-09-25 11:17:32 -0700236 <DebugInformationFormat Condition="$(Jenkins)">None</DebugInformationFormat>
Craig Tiller02a7bed2015-08-31 15:54:05 -0700237 </ClCompile>
238 <Link>
239 <SubSystem>Windows</SubSystem>
Craig Tiller8f12f772015-09-25 11:17:32 -0700240 <GenerateDebugInformation Condition="!$(Jenkins)">true</GenerateDebugInformation>
241 <GenerateDebugInformation Condition="$(Jenkins)">false</GenerateDebugInformation>
Craig Tiller02a7bed2015-08-31 15:54:05 -0700242 <EnableCOMDATFolding>true</EnableCOMDATFolding>
243 <OptimizeReferences>true</OptimizeReferences>
244 </Link>
245 </ItemDefinitionGroup>
246 <ItemGroup>
247 <ClInclude Include="..\..\..\include\grpc\grpc_security.h" />
248 <ClInclude Include="..\..\..\include\grpc\byte_buffer.h" />
249 <ClInclude Include="..\..\..\include\grpc\byte_buffer_reader.h" />
250 <ClInclude Include="..\..\..\include\grpc\compression.h" />
251 <ClInclude Include="..\..\..\include\grpc\grpc.h" />
252 <ClInclude Include="..\..\..\include\grpc\status.h" />
253 <ClInclude Include="..\..\..\include\grpc\census.h" />
254 </ItemGroup>
255 <ItemGroup>
256 <ClInclude Include="..\..\..\src\core\security\auth_filters.h" />
257 <ClInclude Include="..\..\..\src\core\security\base64.h" />
258 <ClInclude Include="..\..\..\src\core\security\credentials.h" />
Julien Boeuf5600a6a2015-09-15 23:01:39 -0700259 <ClInclude Include="..\..\..\src\core\security\handshake.h" />
Craig Tiller02a7bed2015-08-31 15:54:05 -0700260 <ClInclude Include="..\..\..\src\core\security\json_token.h" />
261 <ClInclude Include="..\..\..\src\core\security\jwt_verifier.h" />
262 <ClInclude Include="..\..\..\src\core\security\secure_endpoint.h" />
Craig Tiller02a7bed2015-08-31 15:54:05 -0700263 <ClInclude Include="..\..\..\src\core\security\security_connector.h" />
264 <ClInclude Include="..\..\..\src\core\security\security_context.h" />
265 <ClInclude Include="..\..\..\src\core\tsi\fake_transport_security.h" />
266 <ClInclude Include="..\..\..\src\core\tsi\ssl_transport_security.h" />
267 <ClInclude Include="..\..\..\src\core\tsi\transport_security.h" />
268 <ClInclude Include="..\..\..\src\core\tsi\transport_security_interface.h" />
269 <ClInclude Include="..\..\..\src\core\census\grpc_filter.h" />
270 <ClInclude Include="..\..\..\src\core\channel\channel_args.h" />
271 <ClInclude Include="..\..\..\src\core\channel\channel_stack.h" />
272 <ClInclude Include="..\..\..\src\core\channel\client_channel.h" />
David Garcia Quintas7b1bd2c2015-10-05 18:22:10 -0700273 <ClInclude Include="..\..\..\src\core\channel\client_uchannel.h" />
Craig Tiller02a7bed2015-08-31 15:54:05 -0700274 <ClInclude Include="..\..\..\src\core\channel\compress_filter.h" />
275 <ClInclude Include="..\..\..\src\core\channel\connected_channel.h" />
276 <ClInclude Include="..\..\..\src\core\channel\context.h" />
277 <ClInclude Include="..\..\..\src\core\channel\http_client_filter.h" />
278 <ClInclude Include="..\..\..\src\core\channel\http_server_filter.h" />
279 <ClInclude Include="..\..\..\src\core\channel\noop_filter.h" />
280 <ClInclude Include="..\..\..\src\core\client_config\client_config.h" />
281 <ClInclude Include="..\..\..\src\core\client_config\connector.h" />
yang-ga6124122015-11-05 22:36:20 -0800282 <ClInclude Include="..\..\..\src\core\client_config\initial_connect_string.h" />
Craig Tiller02a7bed2015-08-31 15:54:05 -0700283 <ClInclude Include="..\..\..\src\core\client_config\lb_policies\pick_first.h" />
David Garcia Quintas4fb049b2015-09-03 17:26:06 -0700284 <ClInclude Include="..\..\..\src\core\client_config\lb_policies\round_robin.h" />
Craig Tiller02a7bed2015-08-31 15:54:05 -0700285 <ClInclude Include="..\..\..\src\core\client_config\lb_policy.h" />
David Garcia Quintas5c4543d2015-09-03 15:49:56 -0700286 <ClInclude Include="..\..\..\src\core\client_config\lb_policy_factory.h" />
287 <ClInclude Include="..\..\..\src\core\client_config\lb_policy_registry.h" />
Craig Tiller02a7bed2015-08-31 15:54:05 -0700288 <ClInclude Include="..\..\..\src\core\client_config\resolver.h" />
289 <ClInclude Include="..\..\..\src\core\client_config\resolver_factory.h" />
290 <ClInclude Include="..\..\..\src\core\client_config\resolver_registry.h" />
291 <ClInclude Include="..\..\..\src\core\client_config\resolvers\dns_resolver.h" />
292 <ClInclude Include="..\..\..\src\core\client_config\resolvers\sockaddr_resolver.h" />
293 <ClInclude Include="..\..\..\src\core\client_config\subchannel.h" />
294 <ClInclude Include="..\..\..\src\core\client_config\subchannel_factory.h" />
295 <ClInclude Include="..\..\..\src\core\client_config\subchannel_factory_decorators\add_channel_arg.h" />
296 <ClInclude Include="..\..\..\src\core\client_config\subchannel_factory_decorators\merge_channel_args.h" />
297 <ClInclude Include="..\..\..\src\core\client_config\uri_parser.h" />
298 <ClInclude Include="..\..\..\src\core\compression\message_compress.h" />
299 <ClInclude Include="..\..\..\src\core\debug\trace.h" />
300 <ClInclude Include="..\..\..\src\core\httpcli\format_request.h" />
301 <ClInclude Include="..\..\..\src\core\httpcli\httpcli.h" />
302 <ClInclude Include="..\..\..\src\core\httpcli\parser.h" />
Craig Tiller298751c2015-09-22 09:41:05 -0700303 <ClInclude Include="..\..\..\src\core\iomgr\closure.h" />
Craig Tiller02a7bed2015-08-31 15:54:05 -0700304 <ClInclude Include="..\..\..\src\core\iomgr\endpoint.h" />
305 <ClInclude Include="..\..\..\src\core\iomgr\endpoint_pair.h" />
Craig Tiller298751c2015-09-22 09:41:05 -0700306 <ClInclude Include="..\..\..\src\core\iomgr\exec_ctx.h" />
David Garcia Quintas4bc34632015-10-07 16:12:35 -0700307 <ClInclude Include="..\..\..\src\core\iomgr\executor.h" />
Craig Tiller02a7bed2015-08-31 15:54:05 -0700308 <ClInclude Include="..\..\..\src\core\iomgr\fd_posix.h" />
309 <ClInclude Include="..\..\..\src\core\iomgr\iocp_windows.h" />
310 <ClInclude Include="..\..\..\src\core\iomgr\iomgr.h" />
311 <ClInclude Include="..\..\..\src\core\iomgr\iomgr_internal.h" />
312 <ClInclude Include="..\..\..\src\core\iomgr\iomgr_posix.h" />
313 <ClInclude Include="..\..\..\src\core\iomgr\pollset.h" />
314 <ClInclude Include="..\..\..\src\core\iomgr\pollset_posix.h" />
315 <ClInclude Include="..\..\..\src\core\iomgr\pollset_set.h" />
316 <ClInclude Include="..\..\..\src\core\iomgr\pollset_set_posix.h" />
317 <ClInclude Include="..\..\..\src\core\iomgr\pollset_set_windows.h" />
318 <ClInclude Include="..\..\..\src\core\iomgr\pollset_windows.h" />
319 <ClInclude Include="..\..\..\src\core\iomgr\resolve_address.h" />
320 <ClInclude Include="..\..\..\src\core\iomgr\sockaddr.h" />
321 <ClInclude Include="..\..\..\src\core\iomgr\sockaddr_posix.h" />
322 <ClInclude Include="..\..\..\src\core\iomgr\sockaddr_utils.h" />
323 <ClInclude Include="..\..\..\src\core\iomgr\sockaddr_win32.h" />
324 <ClInclude Include="..\..\..\src\core\iomgr\socket_utils_posix.h" />
325 <ClInclude Include="..\..\..\src\core\iomgr\socket_windows.h" />
326 <ClInclude Include="..\..\..\src\core\iomgr\tcp_client.h" />
327 <ClInclude Include="..\..\..\src\core\iomgr\tcp_posix.h" />
328 <ClInclude Include="..\..\..\src\core\iomgr\tcp_server.h" />
329 <ClInclude Include="..\..\..\src\core\iomgr\tcp_windows.h" />
330 <ClInclude Include="..\..\..\src\core\iomgr\time_averaged_stats.h" />
David Garcia Quintasb65e4212015-10-14 12:00:21 -0700331 <ClInclude Include="..\..\..\src\core\iomgr\timer.h" />
332 <ClInclude Include="..\..\..\src\core\iomgr\timer_heap.h" />
333 <ClInclude Include="..\..\..\src\core\iomgr\timer_internal.h" />
Craig Tiller02a7bed2015-08-31 15:54:05 -0700334 <ClInclude Include="..\..\..\src\core\iomgr\udp_server.h" />
335 <ClInclude Include="..\..\..\src\core\iomgr\wakeup_fd_pipe.h" />
336 <ClInclude Include="..\..\..\src\core\iomgr\wakeup_fd_posix.h" />
Craig Tiller73b66062015-09-09 09:34:46 -0700337 <ClInclude Include="..\..\..\src\core\iomgr\workqueue.h" />
338 <ClInclude Include="..\..\..\src\core\iomgr\workqueue_posix.h" />
339 <ClInclude Include="..\..\..\src\core\iomgr\workqueue_windows.h" />
Craig Tiller02a7bed2015-08-31 15:54:05 -0700340 <ClInclude Include="..\..\..\src\core\json\json.h" />
341 <ClInclude Include="..\..\..\src\core\json\json_common.h" />
342 <ClInclude Include="..\..\..\src\core\json\json_reader.h" />
343 <ClInclude Include="..\..\..\src\core\json\json_writer.h" />
Craig Tiller02a7bed2015-08-31 15:54:05 -0700344 <ClInclude Include="..\..\..\src\core\statistics\census_interface.h" />
345 <ClInclude Include="..\..\..\src\core\statistics\census_rpc_stats.h" />
Craig Tiller2468ff52015-10-05 09:00:17 -0700346 <ClInclude Include="..\..\..\src\core\surface\api_trace.h" />
Craig Tiller02a7bed2015-08-31 15:54:05 -0700347 <ClInclude Include="..\..\..\src\core\surface\byte_buffer_queue.h" />
348 <ClInclude Include="..\..\..\src\core\surface\call.h" />
David Garcia Quintas0c331882015-10-08 14:51:54 -0700349 <ClInclude Include="..\..\..\src\core\surface\call_test_only.h" />
Craig Tiller02a7bed2015-08-31 15:54:05 -0700350 <ClInclude Include="..\..\..\src\core\surface\channel.h" />
351 <ClInclude Include="..\..\..\src\core\surface\completion_queue.h" />
352 <ClInclude Include="..\..\..\src\core\surface\event_string.h" />
353 <ClInclude Include="..\..\..\src\core\surface\init.h" />
354 <ClInclude Include="..\..\..\src\core\surface\server.h" />
Craig Tiller0801ce62015-10-05 09:40:31 -0700355 <ClInclude Include="..\..\..\src\core\surface\surface_trace.h" />
Craig Tiller02a7bed2015-08-31 15:54:05 -0700356 <ClInclude Include="..\..\..\src\core\transport\chttp2\alpn.h" />
357 <ClInclude Include="..\..\..\src\core\transport\chttp2\bin_encoder.h" />
358 <ClInclude Include="..\..\..\src\core\transport\chttp2\frame.h" />
359 <ClInclude Include="..\..\..\src\core\transport\chttp2\frame_data.h" />
360 <ClInclude Include="..\..\..\src\core\transport\chttp2\frame_goaway.h" />
361 <ClInclude Include="..\..\..\src\core\transport\chttp2\frame_ping.h" />
362 <ClInclude Include="..\..\..\src\core\transport\chttp2\frame_rst_stream.h" />
363 <ClInclude Include="..\..\..\src\core\transport\chttp2\frame_settings.h" />
364 <ClInclude Include="..\..\..\src\core\transport\chttp2\frame_window_update.h" />
365 <ClInclude Include="..\..\..\src\core\transport\chttp2\hpack_parser.h" />
366 <ClInclude Include="..\..\..\src\core\transport\chttp2\hpack_table.h" />
367 <ClInclude Include="..\..\..\src\core\transport\chttp2\http2_errors.h" />
368 <ClInclude Include="..\..\..\src\core\transport\chttp2\huffsyms.h" />
369 <ClInclude Include="..\..\..\src\core\transport\chttp2\incoming_metadata.h" />
370 <ClInclude Include="..\..\..\src\core\transport\chttp2\internal.h" />
371 <ClInclude Include="..\..\..\src\core\transport\chttp2\status_conversion.h" />
372 <ClInclude Include="..\..\..\src\core\transport\chttp2\stream_encoder.h" />
373 <ClInclude Include="..\..\..\src\core\transport\chttp2\stream_map.h" />
374 <ClInclude Include="..\..\..\src\core\transport\chttp2\timeout_encoding.h" />
375 <ClInclude Include="..\..\..\src\core\transport\chttp2\varint.h" />
376 <ClInclude Include="..\..\..\src\core\transport\chttp2_transport.h" />
377 <ClInclude Include="..\..\..\src\core\transport\connectivity_state.h" />
378 <ClInclude Include="..\..\..\src\core\transport\metadata.h" />
379 <ClInclude Include="..\..\..\src\core\transport\stream_op.h" />
380 <ClInclude Include="..\..\..\src\core\transport\transport.h" />
381 <ClInclude Include="..\..\..\src\core\transport\transport_impl.h" />
Craig Tiller6c998682015-08-31 20:41:57 -0700382 <ClInclude Include="..\..\..\src\core\census\aggregation.h" />
Craig Tiller02a7bed2015-08-31 15:54:05 -0700383 <ClInclude Include="..\..\..\src\core\census\context.h" />
Craig Tiller6c998682015-08-31 20:41:57 -0700384 <ClInclude Include="..\..\..\src\core\census\rpc_metric_id.h" />
Craig Tiller02a7bed2015-08-31 15:54:05 -0700385 </ItemGroup>
386 <ItemGroup>
387 <ClCompile Include="..\..\..\src\core\httpcli\httpcli_security_connector.c">
388 </ClCompile>
389 <ClCompile Include="..\..\..\src\core\security\base64.c">
390 </ClCompile>
391 <ClCompile Include="..\..\..\src\core\security\client_auth_filter.c">
392 </ClCompile>
393 <ClCompile Include="..\..\..\src\core\security\credentials.c">
394 </ClCompile>
395 <ClCompile Include="..\..\..\src\core\security\credentials_metadata.c">
396 </ClCompile>
397 <ClCompile Include="..\..\..\src\core\security\credentials_posix.c">
398 </ClCompile>
399 <ClCompile Include="..\..\..\src\core\security\credentials_win32.c">
400 </ClCompile>
401 <ClCompile Include="..\..\..\src\core\security\google_default_credentials.c">
402 </ClCompile>
Julien Boeuf5600a6a2015-09-15 23:01:39 -0700403 <ClCompile Include="..\..\..\src\core\security\handshake.c">
404 </ClCompile>
Craig Tiller02a7bed2015-08-31 15:54:05 -0700405 <ClCompile Include="..\..\..\src\core\security\json_token.c">
406 </ClCompile>
407 <ClCompile Include="..\..\..\src\core\security\jwt_verifier.c">
408 </ClCompile>
409 <ClCompile Include="..\..\..\src\core\security\secure_endpoint.c">
410 </ClCompile>
Craig Tiller02a7bed2015-08-31 15:54:05 -0700411 <ClCompile Include="..\..\..\src\core\security\security_connector.c">
412 </ClCompile>
413 <ClCompile Include="..\..\..\src\core\security\security_context.c">
414 </ClCompile>
415 <ClCompile Include="..\..\..\src\core\security\server_auth_filter.c">
416 </ClCompile>
417 <ClCompile Include="..\..\..\src\core\security\server_secure_chttp2.c">
418 </ClCompile>
419 <ClCompile Include="..\..\..\src\core\surface\init_secure.c">
420 </ClCompile>
421 <ClCompile Include="..\..\..\src\core\surface\secure_channel_create.c">
422 </ClCompile>
423 <ClCompile Include="..\..\..\src\core\tsi\fake_transport_security.c">
424 </ClCompile>
425 <ClCompile Include="..\..\..\src\core\tsi\ssl_transport_security.c">
426 </ClCompile>
427 <ClCompile Include="..\..\..\src\core\tsi\transport_security.c">
428 </ClCompile>
429 <ClCompile Include="..\..\..\src\core\census\grpc_context.c">
430 </ClCompile>
431 <ClCompile Include="..\..\..\src\core\census\grpc_filter.c">
432 </ClCompile>
433 <ClCompile Include="..\..\..\src\core\channel\channel_args.c">
434 </ClCompile>
435 <ClCompile Include="..\..\..\src\core\channel\channel_stack.c">
436 </ClCompile>
437 <ClCompile Include="..\..\..\src\core\channel\client_channel.c">
438 </ClCompile>
David Garcia Quintas7b1bd2c2015-10-05 18:22:10 -0700439 <ClCompile Include="..\..\..\src\core\channel\client_uchannel.c">
440 </ClCompile>
Craig Tiller02a7bed2015-08-31 15:54:05 -0700441 <ClCompile Include="..\..\..\src\core\channel\compress_filter.c">
442 </ClCompile>
443 <ClCompile Include="..\..\..\src\core\channel\connected_channel.c">
444 </ClCompile>
445 <ClCompile Include="..\..\..\src\core\channel\http_client_filter.c">
446 </ClCompile>
447 <ClCompile Include="..\..\..\src\core\channel\http_server_filter.c">
448 </ClCompile>
449 <ClCompile Include="..\..\..\src\core\channel\noop_filter.c">
450 </ClCompile>
451 <ClCompile Include="..\..\..\src\core\client_config\client_config.c">
452 </ClCompile>
453 <ClCompile Include="..\..\..\src\core\client_config\connector.c">
454 </ClCompile>
yang-ga6124122015-11-05 22:36:20 -0800455 <ClCompile Include="..\..\..\src\core\client_config\default_initial_connect_string.c">
456 </ClCompile>
457 <ClCompile Include="..\..\..\src\core\client_config\initial_connect_string.c">
458 </ClCompile>
Craig Tiller02a7bed2015-08-31 15:54:05 -0700459 <ClCompile Include="..\..\..\src\core\client_config\lb_policies\pick_first.c">
460 </ClCompile>
David Garcia Quintas4fb049b2015-09-03 17:26:06 -0700461 <ClCompile Include="..\..\..\src\core\client_config\lb_policies\round_robin.c">
462 </ClCompile>
Craig Tiller02a7bed2015-08-31 15:54:05 -0700463 <ClCompile Include="..\..\..\src\core\client_config\lb_policy.c">
464 </ClCompile>
David Garcia Quintas5c4543d2015-09-03 15:49:56 -0700465 <ClCompile Include="..\..\..\src\core\client_config\lb_policy_factory.c">
466 </ClCompile>
467 <ClCompile Include="..\..\..\src\core\client_config\lb_policy_registry.c">
468 </ClCompile>
Craig Tiller02a7bed2015-08-31 15:54:05 -0700469 <ClCompile Include="..\..\..\src\core\client_config\resolver.c">
470 </ClCompile>
471 <ClCompile Include="..\..\..\src\core\client_config\resolver_factory.c">
472 </ClCompile>
473 <ClCompile Include="..\..\..\src\core\client_config\resolver_registry.c">
474 </ClCompile>
475 <ClCompile Include="..\..\..\src\core\client_config\resolvers\dns_resolver.c">
476 </ClCompile>
477 <ClCompile Include="..\..\..\src\core\client_config\resolvers\sockaddr_resolver.c">
478 </ClCompile>
479 <ClCompile Include="..\..\..\src\core\client_config\subchannel.c">
480 </ClCompile>
481 <ClCompile Include="..\..\..\src\core\client_config\subchannel_factory.c">
482 </ClCompile>
483 <ClCompile Include="..\..\..\src\core\client_config\subchannel_factory_decorators\add_channel_arg.c">
484 </ClCompile>
485 <ClCompile Include="..\..\..\src\core\client_config\subchannel_factory_decorators\merge_channel_args.c">
486 </ClCompile>
487 <ClCompile Include="..\..\..\src\core\client_config\uri_parser.c">
488 </ClCompile>
489 <ClCompile Include="..\..\..\src\core\compression\algorithm.c">
490 </ClCompile>
491 <ClCompile Include="..\..\..\src\core\compression\message_compress.c">
492 </ClCompile>
493 <ClCompile Include="..\..\..\src\core\debug\trace.c">
494 </ClCompile>
495 <ClCompile Include="..\..\..\src\core\httpcli\format_request.c">
496 </ClCompile>
497 <ClCompile Include="..\..\..\src\core\httpcli\httpcli.c">
498 </ClCompile>
499 <ClCompile Include="..\..\..\src\core\httpcli\parser.c">
500 </ClCompile>
Craig Tiller298751c2015-09-22 09:41:05 -0700501 <ClCompile Include="..\..\..\src\core\iomgr\closure.c">
502 </ClCompile>
Craig Tiller02a7bed2015-08-31 15:54:05 -0700503 <ClCompile Include="..\..\..\src\core\iomgr\endpoint.c">
504 </ClCompile>
505 <ClCompile Include="..\..\..\src\core\iomgr\endpoint_pair_posix.c">
506 </ClCompile>
507 <ClCompile Include="..\..\..\src\core\iomgr\endpoint_pair_windows.c">
508 </ClCompile>
Craig Tiller8af4c332015-09-22 12:32:31 -0700509 <ClCompile Include="..\..\..\src\core\iomgr\exec_ctx.c">
510 </ClCompile>
David Garcia Quintas4bc34632015-10-07 16:12:35 -0700511 <ClCompile Include="..\..\..\src\core\iomgr\executor.c">
512 </ClCompile>
Craig Tiller02a7bed2015-08-31 15:54:05 -0700513 <ClCompile Include="..\..\..\src\core\iomgr\fd_posix.c">
514 </ClCompile>
515 <ClCompile Include="..\..\..\src\core\iomgr\iocp_windows.c">
516 </ClCompile>
517 <ClCompile Include="..\..\..\src\core\iomgr\iomgr.c">
518 </ClCompile>
519 <ClCompile Include="..\..\..\src\core\iomgr\iomgr_posix.c">
520 </ClCompile>
521 <ClCompile Include="..\..\..\src\core\iomgr\iomgr_windows.c">
522 </ClCompile>
523 <ClCompile Include="..\..\..\src\core\iomgr\pollset_multipoller_with_epoll.c">
524 </ClCompile>
525 <ClCompile Include="..\..\..\src\core\iomgr\pollset_multipoller_with_poll_posix.c">
526 </ClCompile>
527 <ClCompile Include="..\..\..\src\core\iomgr\pollset_posix.c">
528 </ClCompile>
529 <ClCompile Include="..\..\..\src\core\iomgr\pollset_set_posix.c">
530 </ClCompile>
531 <ClCompile Include="..\..\..\src\core\iomgr\pollset_set_windows.c">
532 </ClCompile>
533 <ClCompile Include="..\..\..\src\core\iomgr\pollset_windows.c">
534 </ClCompile>
535 <ClCompile Include="..\..\..\src\core\iomgr\resolve_address_posix.c">
536 </ClCompile>
537 <ClCompile Include="..\..\..\src\core\iomgr\resolve_address_windows.c">
538 </ClCompile>
539 <ClCompile Include="..\..\..\src\core\iomgr\sockaddr_utils.c">
540 </ClCompile>
541 <ClCompile Include="..\..\..\src\core\iomgr\socket_utils_common_posix.c">
542 </ClCompile>
543 <ClCompile Include="..\..\..\src\core\iomgr\socket_utils_linux.c">
544 </ClCompile>
545 <ClCompile Include="..\..\..\src\core\iomgr\socket_utils_posix.c">
546 </ClCompile>
547 <ClCompile Include="..\..\..\src\core\iomgr\socket_windows.c">
548 </ClCompile>
549 <ClCompile Include="..\..\..\src\core\iomgr\tcp_client_posix.c">
550 </ClCompile>
551 <ClCompile Include="..\..\..\src\core\iomgr\tcp_client_windows.c">
552 </ClCompile>
553 <ClCompile Include="..\..\..\src\core\iomgr\tcp_posix.c">
554 </ClCompile>
555 <ClCompile Include="..\..\..\src\core\iomgr\tcp_server_posix.c">
556 </ClCompile>
557 <ClCompile Include="..\..\..\src\core\iomgr\tcp_server_windows.c">
558 </ClCompile>
559 <ClCompile Include="..\..\..\src\core\iomgr\tcp_windows.c">
560 </ClCompile>
561 <ClCompile Include="..\..\..\src\core\iomgr\time_averaged_stats.c">
562 </ClCompile>
David Garcia Quintasb65e4212015-10-14 12:00:21 -0700563 <ClCompile Include="..\..\..\src\core\iomgr\timer.c">
564 </ClCompile>
565 <ClCompile Include="..\..\..\src\core\iomgr\timer_heap.c">
566 </ClCompile>
Craig Tiller02a7bed2015-08-31 15:54:05 -0700567 <ClCompile Include="..\..\..\src\core\iomgr\udp_server.c">
568 </ClCompile>
569 <ClCompile Include="..\..\..\src\core\iomgr\wakeup_fd_eventfd.c">
570 </ClCompile>
571 <ClCompile Include="..\..\..\src\core\iomgr\wakeup_fd_nospecial.c">
572 </ClCompile>
573 <ClCompile Include="..\..\..\src\core\iomgr\wakeup_fd_pipe.c">
574 </ClCompile>
575 <ClCompile Include="..\..\..\src\core\iomgr\wakeup_fd_posix.c">
576 </ClCompile>
Craig Tiller73b66062015-09-09 09:34:46 -0700577 <ClCompile Include="..\..\..\src\core\iomgr\workqueue_posix.c">
578 </ClCompile>
579 <ClCompile Include="..\..\..\src\core\iomgr\workqueue_windows.c">
580 </ClCompile>
Craig Tiller02a7bed2015-08-31 15:54:05 -0700581 <ClCompile Include="..\..\..\src\core\json\json.c">
582 </ClCompile>
583 <ClCompile Include="..\..\..\src\core\json\json_reader.c">
584 </ClCompile>
585 <ClCompile Include="..\..\..\src\core\json\json_string.c">
586 </ClCompile>
587 <ClCompile Include="..\..\..\src\core\json\json_writer.c">
588 </ClCompile>
Craig Tiller2468ff52015-10-05 09:00:17 -0700589 <ClCompile Include="..\..\..\src\core\surface\api_trace.c">
590 </ClCompile>
Craig Tiller02a7bed2015-08-31 15:54:05 -0700591 <ClCompile Include="..\..\..\src\core\surface\byte_buffer.c">
592 </ClCompile>
593 <ClCompile Include="..\..\..\src\core\surface\byte_buffer_queue.c">
594 </ClCompile>
595 <ClCompile Include="..\..\..\src\core\surface\byte_buffer_reader.c">
596 </ClCompile>
597 <ClCompile Include="..\..\..\src\core\surface\call.c">
598 </ClCompile>
599 <ClCompile Include="..\..\..\src\core\surface\call_details.c">
600 </ClCompile>
601 <ClCompile Include="..\..\..\src\core\surface\call_log_batch.c">
602 </ClCompile>
603 <ClCompile Include="..\..\..\src\core\surface\channel.c">
604 </ClCompile>
605 <ClCompile Include="..\..\..\src\core\surface\channel_connectivity.c">
606 </ClCompile>
607 <ClCompile Include="..\..\..\src\core\surface\channel_create.c">
608 </ClCompile>
609 <ClCompile Include="..\..\..\src\core\surface\completion_queue.c">
610 </ClCompile>
611 <ClCompile Include="..\..\..\src\core\surface\event_string.c">
612 </ClCompile>
613 <ClCompile Include="..\..\..\src\core\surface\init.c">
614 </ClCompile>
615 <ClCompile Include="..\..\..\src\core\surface\lame_client.c">
616 </ClCompile>
617 <ClCompile Include="..\..\..\src\core\surface\metadata_array.c">
618 </ClCompile>
619 <ClCompile Include="..\..\..\src\core\surface\server.c">
620 </ClCompile>
621 <ClCompile Include="..\..\..\src\core\surface\server_chttp2.c">
622 </ClCompile>
623 <ClCompile Include="..\..\..\src\core\surface\server_create.c">
624 </ClCompile>
Craig Tiller02a7bed2015-08-31 15:54:05 -0700625 <ClCompile Include="..\..\..\src\core\surface\version.c">
626 </ClCompile>
627 <ClCompile Include="..\..\..\src\core\transport\chttp2\alpn.c">
628 </ClCompile>
629 <ClCompile Include="..\..\..\src\core\transport\chttp2\bin_encoder.c">
630 </ClCompile>
631 <ClCompile Include="..\..\..\src\core\transport\chttp2\frame_data.c">
632 </ClCompile>
633 <ClCompile Include="..\..\..\src\core\transport\chttp2\frame_goaway.c">
634 </ClCompile>
635 <ClCompile Include="..\..\..\src\core\transport\chttp2\frame_ping.c">
636 </ClCompile>
637 <ClCompile Include="..\..\..\src\core\transport\chttp2\frame_rst_stream.c">
638 </ClCompile>
639 <ClCompile Include="..\..\..\src\core\transport\chttp2\frame_settings.c">
640 </ClCompile>
641 <ClCompile Include="..\..\..\src\core\transport\chttp2\frame_window_update.c">
642 </ClCompile>
643 <ClCompile Include="..\..\..\src\core\transport\chttp2\hpack_parser.c">
644 </ClCompile>
645 <ClCompile Include="..\..\..\src\core\transport\chttp2\hpack_table.c">
646 </ClCompile>
647 <ClCompile Include="..\..\..\src\core\transport\chttp2\huffsyms.c">
648 </ClCompile>
649 <ClCompile Include="..\..\..\src\core\transport\chttp2\incoming_metadata.c">
650 </ClCompile>
651 <ClCompile Include="..\..\..\src\core\transport\chttp2\parsing.c">
652 </ClCompile>
653 <ClCompile Include="..\..\..\src\core\transport\chttp2\status_conversion.c">
654 </ClCompile>
655 <ClCompile Include="..\..\..\src\core\transport\chttp2\stream_encoder.c">
656 </ClCompile>
657 <ClCompile Include="..\..\..\src\core\transport\chttp2\stream_lists.c">
658 </ClCompile>
659 <ClCompile Include="..\..\..\src\core\transport\chttp2\stream_map.c">
660 </ClCompile>
661 <ClCompile Include="..\..\..\src\core\transport\chttp2\timeout_encoding.c">
662 </ClCompile>
663 <ClCompile Include="..\..\..\src\core\transport\chttp2\varint.c">
664 </ClCompile>
665 <ClCompile Include="..\..\..\src\core\transport\chttp2\writing.c">
666 </ClCompile>
667 <ClCompile Include="..\..\..\src\core\transport\chttp2_transport.c">
668 </ClCompile>
669 <ClCompile Include="..\..\..\src\core\transport\connectivity_state.c">
670 </ClCompile>
671 <ClCompile Include="..\..\..\src\core\transport\metadata.c">
672 </ClCompile>
673 <ClCompile Include="..\..\..\src\core\transport\stream_op.c">
674 </ClCompile>
675 <ClCompile Include="..\..\..\src\core\transport\transport.c">
676 </ClCompile>
677 <ClCompile Include="..\..\..\src\core\transport\transport_op_string.c">
678 </ClCompile>
679 <ClCompile Include="..\..\..\src\core\census\context.c">
680 </ClCompile>
681 <ClCompile Include="..\..\..\src\core\census\initialize.c">
682 </ClCompile>
683 <ClCompile Include="..\..\..\src\core\census\operation.c">
684 </ClCompile>
Craig Tiller02a7bed2015-08-31 15:54:05 -0700685 <ClCompile Include="..\..\..\src\core\census\tracing.c">
686 </ClCompile>
687 </ItemGroup>
688 <ItemGroup>
689 <ProjectReference Include="..\..\..\vsprojects\vcxproj\.\gpr\gpr.vcxproj">
690 <Project>{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}</Project>
691 </ProjectReference>
692 </ItemGroup>
693 <ItemGroup>
694 <None Include="packages.config" />
695 </ItemGroup>
696 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
697 <ImportGroup Label="ExtensionTargets">
Craig Tillerf4fc5d22015-09-23 09:36:31 -0700698 <Import Project="..\..\..\vsprojects\packages\grpc.dependencies.zlib.redist.1.2.8.9\build\native\grpc.dependencies.zlib.redist.targets" Condition="Exists('..\..\..\vsprojects\packages\grpc.dependencies.zlib.redist.1.2.8.9\build\native\grpc.dependencies\grpc.dependencies.zlib.targets')" />
699 <Import Project="..\..\..\vsprojects\packages\grpc.dependencies.zlib.1.2.8.9\build\native\grpc.dependencies.zlib.targets" Condition="Exists('..\..\..\vsprojects\packages\grpc.dependencies.zlib.1.2.8.9\build\native\grpc.dependencies\grpc.dependencies.zlib.targets')" />
700 <Import Project="..\..\..\vsprojects\packages\grpc.dependencies.openssl.redist.1.0.2.3\build\native\grpc.dependencies.openssl.redist.targets" Condition="Exists('..\..\..\vsprojects\packages\grpc.dependencies.openssl.redist.1.0.2.3\build\native\grpc.dependencies\grpc.dependencies.openssl.targets')" />
701 <Import Project="..\..\..\vsprojects\packages\grpc.dependencies.openssl.1.0.2.3\build\native\grpc.dependencies.openssl.targets" Condition="Exists('..\..\..\vsprojects\packages\grpc.dependencies.openssl.1.0.2.3\build\native\grpc.dependencies\grpc.dependencies.openssl.targets')" />
Craig Tiller02a7bed2015-08-31 15:54:05 -0700702 </ImportGroup>
703 <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
704 <PropertyGroup>
705 <ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
706 </PropertyGroup>
707 <Error Condition="!Exists('..\..\..\vsprojects\packages\grpc.dependencies.zlib.redist.1.2.8.9\build\native\grpc.dependencies.zlib.redist.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\vsprojects\packages\grpc.dependencies.zlib.redist.1.2.8.9\build\native\grpc.dependencies.zlib.redist.targets')" />
708 <Error Condition="!Exists('..\..\..\vsprojects\packages\grpc.dependencies.zlib.1.2.8.9\build\native\grpc.dependencies.zlib.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\vsprojects\packages\grpc.dependencies.zlib.1.2.8.9\build\native\grpc.dependencies.zlib.targets')" />
709 <Error Condition="!Exists('..\..\..\vsprojects\packages\grpc.dependencies.openssl.redist.1.0.2.3\build\native\grpc.dependencies.openssl.redist.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\vsprojects\packages\grpc.dependencies.openssl.redist.1.0.2.3\build\native\grpc.dependencies.openssl.redist.targets')" />
710 <Error Condition="!Exists('..\..\..\vsprojects\packages\grpc.dependencies.openssl.1.0.2.3\build\native\grpc.dependencies.openssl.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\vsprojects\packages\grpc.dependencies.openssl.1.0.2.3\build\native\grpc.dependencies.openssl.props')" />
711 <Error Condition="!Exists('..\..\..\vsprojects\packages\grpc.dependencies.openssl.1.0.2.3\build\native\grpc.dependencies.openssl.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\vsprojects\packages\grpc.dependencies.openssl.1.0.2.3\build\native\grpc.dependencies.openssl.targets')" />
712 </Target>
Craig Tillerf4fc5d22015-09-23 09:36:31 -0700713</Project>
714