Skip to content
Snippets Groups Projects
Commit f0ee5452 authored by Craig Tiller's avatar Craig Tiller
Browse files

Merge pull request #497 from nicolasnoble/buildcheck

Ran build-cleaner, and re-generated project files.
parents d8b88dec 98d1dd06
No related branches found
No related tags found
No related merge requests found
...@@ -761,6 +761,7 @@ ...@@ -761,6 +761,7 @@
{ {
"name": "echo_client", "name": "echo_client",
"build": "test", "build": "test",
"run": false,
"language": "c", "language": "c",
"src": [ "src": [
"test/core/echo/client.c" "test/core/echo/client.c"
...@@ -770,12 +771,12 @@ ...@@ -770,12 +771,12 @@
"grpc", "grpc",
"gpr_test_util", "gpr_test_util",
"gpr" "gpr"
], ]
"run": false
}, },
{ {
"name": "echo_server", "name": "echo_server",
"build": "test", "build": "test",
"run": false,
"language": "c", "language": "c",
"src": [ "src": [
"test/core/echo/server.c" "test/core/echo/server.c"
...@@ -785,8 +786,7 @@ ...@@ -785,8 +786,7 @@
"grpc", "grpc",
"gpr_test_util", "gpr_test_util",
"gpr" "gpr"
], ]
"run": false
}, },
{ {
"name": "echo_test", "name": "echo_test",
...@@ -819,6 +819,7 @@ ...@@ -819,6 +819,7 @@
{ {
"name": "fling_client", "name": "fling_client",
"build": "test", "build": "test",
"run": false,
"language": "c", "language": "c",
"src": [ "src": [
"test/core/fling/client.c" "test/core/fling/client.c"
...@@ -828,12 +829,12 @@ ...@@ -828,12 +829,12 @@
"grpc", "grpc",
"gpr_test_util", "gpr_test_util",
"gpr" "gpr"
], ]
"run": false
}, },
{ {
"name": "fling_server", "name": "fling_server",
"build": "test", "build": "test",
"run": false,
"language": "c", "language": "c",
"src": [ "src": [
"test/core/fling/server.c" "test/core/fling/server.c"
...@@ -843,8 +844,7 @@ ...@@ -843,8 +844,7 @@
"grpc", "grpc",
"gpr_test_util", "gpr_test_util",
"gpr" "gpr"
], ]
"run": false
}, },
{ {
"name": "fling_stream_test", "name": "fling_stream_test",
...@@ -1254,6 +1254,7 @@ ...@@ -1254,6 +1254,7 @@
{ {
"name": "json_rewrite", "name": "json_rewrite",
"build": "test", "build": "test",
"run": false,
"language": "c", "language": "c",
"src": [ "src": [
"test/core/json/json_rewrite.c" "test/core/json/json_rewrite.c"
...@@ -1261,12 +1262,12 @@ ...@@ -1261,12 +1262,12 @@
"deps": [ "deps": [
"grpc", "grpc",
"gpr" "gpr"
], ]
"run": false
}, },
{ {
"name": "json_rewrite_test", "name": "json_rewrite_test",
"build": "test", "build": "test",
"run": false,
"language": "c", "language": "c",
"src": [ "src": [
"test/core/json/json_rewrite_test.c" "test/core/json/json_rewrite_test.c"
...@@ -1276,8 +1277,7 @@ ...@@ -1276,8 +1277,7 @@
"grpc", "grpc",
"gpr_test_util", "gpr_test_util",
"gpr" "gpr"
], ]
"run": false
}, },
{ {
"name": "json_test", "name": "json_test",
...@@ -1589,6 +1589,7 @@ ...@@ -1589,6 +1589,7 @@
{ {
"name": "interop_client", "name": "interop_client",
"build": "test", "build": "test",
"run": false,
"language": "c++", "language": "c++",
"src": [ "src": [
"test/cpp/interop/empty.proto", "test/cpp/interop/empty.proto",
...@@ -1603,12 +1604,12 @@ ...@@ -1603,12 +1604,12 @@
"grpc", "grpc",
"gpr_test_util", "gpr_test_util",
"gpr" "gpr"
], ]
"run": false
}, },
{ {
"name": "interop_server", "name": "interop_server",
"build": "test", "build": "test",
"run": false,
"language": "c++", "language": "c++",
"src": [ "src": [
"test/cpp/interop/empty.proto", "test/cpp/interop/empty.proto",
...@@ -1623,8 +1624,7 @@ ...@@ -1623,8 +1624,7 @@
"grpc", "grpc",
"gpr_test_util", "gpr_test_util",
"gpr" "gpr"
], ]
"run": false
}, },
{ {
"name": "qps_client", "name": "qps_client",
...@@ -1728,6 +1728,7 @@ ...@@ -1728,6 +1728,7 @@
{ {
"name": "tips_client", "name": "tips_client",
"build": "test", "build": "test",
"run": false,
"language": "c++", "language": "c++",
"src": [ "src": [
"examples/tips/main.cc" "examples/tips/main.cc"
...@@ -1740,8 +1741,7 @@ ...@@ -1740,8 +1741,7 @@
"grpc", "grpc",
"gpr_test_util", "gpr_test_util",
"gpr" "gpr"
], ]
"run": false
}, },
{ {
"name": "tips_publisher_test", "name": "tips_publisher_test",
......
...@@ -13,6 +13,7 @@ _VERSION_KEYS = ['major', 'minor', 'micro', 'build'] ...@@ -13,6 +13,7 @@ _VERSION_KEYS = ['major', 'minor', 'micro', 'build']
_ELEM_KEYS = [ _ELEM_KEYS = [
'name', 'name',
'build', 'build',
'run',
'language', 'language',
'public_headers', 'public_headers',
'headers', 'headers',
......
...@@ -120,6 +120,8 @@ ...@@ -120,6 +120,8 @@
</ClCompile> </ClCompile>
<ClCompile Include="..\..\src\core\support\cpu_posix.c"> <ClCompile Include="..\..\src\core\support\cpu_posix.c">
</ClCompile> </ClCompile>
<ClCompile Include="..\..\src\core\support\cpu_windows.c">
</ClCompile>
<ClCompile Include="..\..\src\core\support\env_linux.c"> <ClCompile Include="..\..\src\core\support\env_linux.c">
</ClCompile> </ClCompile>
<ClCompile Include="..\..\src\core\support\env_posix.c"> <ClCompile Include="..\..\src\core\support\env_posix.c">
......
...@@ -16,6 +16,9 @@ ...@@ -16,6 +16,9 @@
<ClCompile Include="..\..\src\core\support\cpu_posix.c"> <ClCompile Include="..\..\src\core\support\cpu_posix.c">
<Filter>src\core\support</Filter> <Filter>src\core\support</Filter>
</ClCompile> </ClCompile>
<ClCompile Include="..\..\src\core\support\cpu_windows.c">
<Filter>src\core\support</Filter>
</ClCompile>
<ClCompile Include="..\..\src\core\support\env_linux.c"> <ClCompile Include="..\..\src\core\support\env_linux.c">
<Filter>src\core\support</Filter> <Filter>src\core\support</Filter>
</ClCompile> </ClCompile>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment