diff options
Diffstat (limited to 'vsprojects/vs2010')
-rw-r--r-- | vsprojects/vs2010/grpc.vcxproj | 7 | ||||
-rw-r--r-- | vsprojects/vs2010/grpc.vcxproj.filters | 12 | ||||
-rw-r--r-- | vsprojects/vs2010/grpc_unsecure.vcxproj | 7 | ||||
-rw-r--r-- | vsprojects/vs2010/grpc_unsecure.vcxproj.filters | 12 |
4 files changed, 10 insertions, 28 deletions
diff --git a/vsprojects/vs2010/grpc.vcxproj b/vsprojects/vs2010/grpc.vcxproj index f16ad85e5c..c92efd8ca6 100644 --- a/vsprojects/vs2010/grpc.vcxproj +++ b/vsprojects/vs2010/grpc.vcxproj @@ -107,7 +107,6 @@ <ClInclude Include="..\..\src\core\channel\client_setup.h" /> <ClInclude Include="..\..\src\core\channel\connected_channel.h" /> <ClInclude Include="..\..\src\core\channel\http_client_filter.h" /> - <ClInclude Include="..\..\src\core\channel\http_filter.h" /> <ClInclude Include="..\..\src\core\channel\http_server_filter.h" /> <ClInclude Include="..\..\src\core\channel\noop_filter.h" /> <ClInclude Include="..\..\src\core\compression\algorithm.h" /> @@ -229,8 +228,6 @@ </ClCompile> <ClCompile Include="..\..\src\core\tsi\transport_security.c"> </ClCompile> - <ClCompile Include="..\..\src\core\channel\call_op_string.c"> - </ClCompile> <ClCompile Include="..\..\src\core\channel\census_filter.c"> </ClCompile> <ClCompile Include="..\..\src\core\channel\channel_args.c"> @@ -247,8 +244,6 @@ </ClCompile> <ClCompile Include="..\..\src\core\channel\http_client_filter.c"> </ClCompile> - <ClCompile Include="..\..\src\core\channel\http_filter.c"> - </ClCompile> <ClCompile Include="..\..\src\core\channel\http_server_filter.c"> </ClCompile> <ClCompile Include="..\..\src\core\channel\noop_filter.c"> @@ -423,6 +418,8 @@ </ClCompile> <ClCompile Include="..\..\src\core\transport\transport.c"> </ClCompile> + <ClCompile Include="..\..\src\core\transport\transport_op_string.c"> + </ClCompile> </ItemGroup> <ItemGroup> <ProjectReference Include="gpr.vcxproj"> diff --git a/vsprojects/vs2010/grpc.vcxproj.filters b/vsprojects/vs2010/grpc.vcxproj.filters index 1dfca58cb5..edce8d9652 100644 --- a/vsprojects/vs2010/grpc.vcxproj.filters +++ b/vsprojects/vs2010/grpc.vcxproj.filters @@ -61,9 +61,6 @@ <ClCompile Include="..\..\src\core\tsi\transport_security.c"> <Filter>src\core\tsi</Filter> </ClCompile> - <ClCompile Include="..\..\src\core\channel\call_op_string.c"> - <Filter>src\core\channel</Filter> - </ClCompile> <ClCompile Include="..\..\src\core\channel\census_filter.c"> <Filter>src\core\channel</Filter> </ClCompile> @@ -88,9 +85,6 @@ <ClCompile Include="..\..\src\core\channel\http_client_filter.c"> <Filter>src\core\channel</Filter> </ClCompile> - <ClCompile Include="..\..\src\core\channel\http_filter.c"> - <Filter>src\core\channel</Filter> - </ClCompile> <ClCompile Include="..\..\src\core\channel\http_server_filter.c"> <Filter>src\core\channel</Filter> </ClCompile> @@ -352,6 +346,9 @@ <ClCompile Include="..\..\src\core\transport\transport.c"> <Filter>src\core\transport</Filter> </ClCompile> + <ClCompile Include="..\..\src\core\transport\transport_op_string.c"> + <Filter>src\core\transport</Filter> + </ClCompile> </ItemGroup> <ItemGroup> <ClInclude Include="..\..\include\grpc\grpc_security.h"> @@ -443,9 +440,6 @@ <ClInclude Include="..\..\src\core\channel\http_client_filter.h"> <Filter>src\core\channel</Filter> </ClInclude> - <ClInclude Include="..\..\src\core\channel\http_filter.h"> - <Filter>src\core\channel</Filter> - </ClInclude> <ClInclude Include="..\..\src\core\channel\http_server_filter.h"> <Filter>src\core\channel</Filter> </ClInclude> diff --git a/vsprojects/vs2010/grpc_unsecure.vcxproj b/vsprojects/vs2010/grpc_unsecure.vcxproj index 75b6dce943..f0b94c0903 100644 --- a/vsprojects/vs2010/grpc_unsecure.vcxproj +++ b/vsprojects/vs2010/grpc_unsecure.vcxproj @@ -91,7 +91,6 @@ <ClInclude Include="..\..\src\core\channel\client_setup.h" /> <ClInclude Include="..\..\src\core\channel\connected_channel.h" /> <ClInclude Include="..\..\src\core\channel\http_client_filter.h" /> - <ClInclude Include="..\..\src\core\channel\http_filter.h" /> <ClInclude Include="..\..\src\core\channel\http_server_filter.h" /> <ClInclude Include="..\..\src\core\channel\noop_filter.h" /> <ClInclude Include="..\..\src\core\compression\algorithm.h" /> @@ -175,8 +174,6 @@ <ItemGroup> <ClCompile Include="..\..\src\core\surface\init_unsecure.c"> </ClCompile> - <ClCompile Include="..\..\src\core\channel\call_op_string.c"> - </ClCompile> <ClCompile Include="..\..\src\core\channel\census_filter.c"> </ClCompile> <ClCompile Include="..\..\src\core\channel\channel_args.c"> @@ -193,8 +190,6 @@ </ClCompile> <ClCompile Include="..\..\src\core\channel\http_client_filter.c"> </ClCompile> - <ClCompile Include="..\..\src\core\channel\http_filter.c"> - </ClCompile> <ClCompile Include="..\..\src\core\channel\http_server_filter.c"> </ClCompile> <ClCompile Include="..\..\src\core\channel\noop_filter.c"> @@ -369,6 +364,8 @@ </ClCompile> <ClCompile Include="..\..\src\core\transport\transport.c"> </ClCompile> + <ClCompile Include="..\..\src\core\transport\transport_op_string.c"> + </ClCompile> </ItemGroup> <ItemGroup> <ProjectReference Include="gpr.vcxproj"> diff --git a/vsprojects/vs2010/grpc_unsecure.vcxproj.filters b/vsprojects/vs2010/grpc_unsecure.vcxproj.filters index 7c94d4d51e..daca2c0c5a 100644 --- a/vsprojects/vs2010/grpc_unsecure.vcxproj.filters +++ b/vsprojects/vs2010/grpc_unsecure.vcxproj.filters @@ -4,9 +4,6 @@ <ClCompile Include="..\..\src\core\surface\init_unsecure.c"> <Filter>src\core\surface</Filter> </ClCompile> - <ClCompile Include="..\..\src\core\channel\call_op_string.c"> - <Filter>src\core\channel</Filter> - </ClCompile> <ClCompile Include="..\..\src\core\channel\census_filter.c"> <Filter>src\core\channel</Filter> </ClCompile> @@ -31,9 +28,6 @@ <ClCompile Include="..\..\src\core\channel\http_client_filter.c"> <Filter>src\core\channel</Filter> </ClCompile> - <ClCompile Include="..\..\src\core\channel\http_filter.c"> - <Filter>src\core\channel</Filter> - </ClCompile> <ClCompile Include="..\..\src\core\channel\http_server_filter.c"> <Filter>src\core\channel</Filter> </ClCompile> @@ -295,6 +289,9 @@ <ClCompile Include="..\..\src\core\transport\transport.c"> <Filter>src\core\transport</Filter> </ClCompile> + <ClCompile Include="..\..\src\core\transport\transport_op_string.c"> + <Filter>src\core\transport</Filter> + </ClCompile> </ItemGroup> <ItemGroup> <ClInclude Include="..\..\include\grpc\byte_buffer.h"> @@ -338,9 +335,6 @@ <ClInclude Include="..\..\src\core\channel\http_client_filter.h"> <Filter>src\core\channel</Filter> </ClInclude> - <ClInclude Include="..\..\src\core\channel\http_filter.h"> - <Filter>src\core\channel</Filter> - </ClInclude> <ClInclude Include="..\..\src\core\channel\http_server_filter.h"> <Filter>src\core\channel</Filter> </ClInclude> |