aboutsummaryrefslogtreecommitdiffhomepage
path: root/build.json
diff options
context:
space:
mode:
authorGravatar Nicolas "Pixel" Noble <pixel@nobis-crew.org>2015-02-10 01:26:37 +0100
committerGravatar Nicolas "Pixel" Noble <pixel@nobis-crew.org>2015-02-10 01:26:37 +0100
commit811b07876c53de41c0e9b5dbe423a4a4340fad38 (patch)
tree527b5437bf8a08afd0700779ec590e00b9c7b68a /build.json
parent45e67a37ae63b14d22eab7ee4bea9b912baa7010 (diff)
parentacbb2b8d4a31b63e8ef60714a30932d90b2d6885 (diff)
Merge branch 'master' of github.com:google/grpc into grpc-win32
Diffstat (limited to 'build.json')
-rw-r--r--build.json149
1 files changed, 93 insertions, 56 deletions
diff --git a/build.json b/build.json
index d2ce51022b..5c83d8af6f 100644
--- a/build.json
+++ b/build.json
@@ -76,6 +76,7 @@
"src/core/statistics/census_tracing.h",
"src/core/statistics/hash_table.h",
"src/core/statistics/window_stats.h",
+ "src/core/surface/byte_buffer_queue.h",
"src/core/surface/call.h",
"src/core/surface/channel.h",
"src/core/surface/client.h",
@@ -168,8 +169,10 @@
"src/core/statistics/hash_table.c",
"src/core/statistics/window_stats.c",
"src/core/surface/byte_buffer.c",
+ "src/core/surface/byte_buffer_queue.c",
"src/core/surface/byte_buffer_reader.c",
"src/core/surface/call.c",
+ "src/core/surface/call_details.c",
"src/core/surface/channel.c",
"src/core/surface/channel_create.c",
"src/core/surface/client.c",
@@ -177,6 +180,7 @@
"src/core/surface/event_string.c",
"src/core/surface/init.c",
"src/core/surface/lame_client.c",
+ "src/core/surface/metadata_array.c",
"src/core/surface/secure_channel_create.c",
"src/core/surface/secure_server_create.c",
"src/core/surface/server.c",
@@ -235,8 +239,11 @@
],
"headers": [
"src/core/support/cpu.h",
+ "src/core/support/env.h",
+ "src/core/support/file.h",
"src/core/support/murmur_hash.h",
"src/core/support/string.h",
+ "src/core/support/string_win32.h",
"src/core/support/thd_internal.h"
],
"src": [
@@ -245,6 +252,12 @@
"src/core/support/cmdline.c",
"src/core/support/cpu_linux.c",
"src/core/support/cpu_posix.c",
+ "src/core/support/env_linux.c",
+ "src/core/support/env_posix.c",
+ "src/core/support/env_win32.c",
+ "src/core/support/file.c",
+ "src/core/support/file_posix.c",
+ "src/core/support/file_win32.c",
"src/core/support/histogram.c",
"src/core/support/host_port.c",
"src/core/support/log.c",
@@ -325,6 +338,18 @@
"vs_project_guid": "{29D16885-7228-4C31-81ED-5F9187C7F2A9}"
},
{
+ "name": "grpc_csharp_ext",
+ "build": "all",
+ "language": "c",
+ "src": [
+ "src/csharp/ext/grpc_csharp_ext.c"
+ ],
+ "deps": [
+ "gpr",
+ "grpc"
+ ]
+ },
+ {
"name": "grpc_test_util",
"build": "private",
"language": "c",
@@ -398,11 +423,11 @@
"src/cpp/client/create_channel.cc",
"src/cpp/client/credentials.cc",
"src/cpp/client/internal_stub.cc",
+ "src/cpp/common/completion_queue.cc",
"src/cpp/common/rpc_method.cc",
"src/cpp/proto/proto_utils.cc",
"src/cpp/server/async_server.cc",
"src/cpp/server/async_server_context.cc",
- "src/cpp/server/completion_queue.cc",
"src/cpp/server/server.cc",
"src/cpp/server/server_builder.cc",
"src/cpp/server/server_context_impl.cc",
@@ -447,18 +472,6 @@
"grpc",
"gpr"
]
- },
- {
- "name": "grpc_csharp_ext",
- "build": "all",
- "language": "c",
- "deps": [
- "gpr",
- "grpc"
- ],
- "src": [
- "src/csharp/ext/grpc_csharp_ext.c"
- ]
}
],
"targets": [
@@ -896,6 +909,30 @@
]
},
{
+ "name": "gpr_env_test",
+ "build": "test",
+ "language": "c",
+ "src": [
+ "test/core/support/env_test.c"
+ ],
+ "deps": [
+ "gpr_test_util",
+ "gpr"
+ ]
+ },
+ {
+ "name": "gpr_file_test",
+ "build": "test",
+ "language": "c",
+ "src": [
+ "test/core/support/file_test.c"
+ ],
+ "deps": [
+ "gpr_test_util",
+ "gpr"
+ ]
+ },
+ {
"name": "gpr_histogram_test",
"build": "test",
"language": "c",
@@ -1587,32 +1624,31 @@
"run": false
},
{
- "name": "tips_client",
+ "name": "qps_client",
"build": "test",
"language": "c++",
"src": [
- "examples/tips/main.cc"
+ "test/cpp/qps/qpstest.proto",
+ "test/cpp/qps/client.cc"
],
"deps": [
- "tips_client_lib",
"grpc++_test_util",
"grpc_test_util",
"grpc++",
"grpc",
"gpr_test_util",
"gpr"
- ],
- "run": false
+ ]
},
{
- "name": "tips_publisher_test",
+ "name": "qps_server",
"build": "test",
"language": "c++",
"src": [
- "examples/tips/publisher_test.cc"
+ "test/cpp/qps/qpstest.proto",
+ "test/cpp/qps/server.cc"
],
"deps": [
- "tips_client_lib",
"grpc++_test_util",
"grpc_test_util",
"grpc++",
@@ -1622,15 +1658,30 @@
]
},
{
- "name": "tips_subscriber_test",
+ "name": "ruby_plugin",
+ "build": "protoc",
+ "language": "c++",
+ "headers": [
+ "src/compiler/cpp_generator.h",
+ "src/compiler/cpp_generator_helpers-inl.h",
+ "src/compiler/cpp_generator_map-inl.h",
+ "src/compiler/cpp_generator_string-inl.h"
+ ],
+ "src": [
+ "src/compiler/ruby_generator.cc",
+ "src/compiler/ruby_plugin.cc"
+ ],
+ "deps": [],
+ "secure": false
+ },
+ {
+ "name": "status_test",
"build": "test",
"language": "c++",
"src": [
- "examples/tips/subscriber_test.cc"
+ "test/cpp/util/status_test.cc"
],
"deps": [
- "tips_client_lib",
- "grpc++_test_util",
"grpc_test_util",
"grpc++",
"grpc",
@@ -1639,12 +1690,11 @@
]
},
{
- "name": "qps_client",
+ "name": "sync_client_async_server_test",
"build": "test",
"language": "c++",
"src": [
- "test/cpp/qps/qpstest.proto",
- "test/cpp/qps/client.cc"
+ "test/cpp/end2end/sync_client_async_server_test.cc"
],
"deps": [
"grpc++_test_util",
@@ -1656,15 +1706,13 @@
]
},
{
- "name": "qps_server",
+ "name": "thread_pool_test",
"build": "test",
"language": "c++",
"src": [
- "test/cpp/qps/qpstest.proto",
- "test/cpp/qps/server.cc"
+ "test/cpp/server/thread_pool_test.cc"
],
"deps": [
- "grpc++_test_util",
"grpc_test_util",
"grpc++",
"grpc",
@@ -1673,45 +1721,32 @@
]
},
{
- "name": "ruby_plugin",
- "build": "protoc",
- "language": "c++",
- "headers": [
- "src/compiler/cpp_generator.h",
- "src/compiler/cpp_generator_helpers-inl.h",
- "src/compiler/cpp_generator_map-inl.h",
- "src/compiler/cpp_generator_string-inl.h"
- ],
- "src": [
- "src/compiler/ruby_generator.cc",
- "src/compiler/ruby_plugin.cc"
- ],
- "deps": [],
- "secure": false
- },
- {
- "name": "status_test",
+ "name": "tips_client",
"build": "test",
"language": "c++",
"src": [
- "test/cpp/util/status_test.cc"
+ "examples/tips/main.cc"
],
"deps": [
+ "tips_client_lib",
+ "grpc++_test_util",
"grpc_test_util",
"grpc++",
"grpc",
"gpr_test_util",
"gpr"
- ]
+ ],
+ "run": false
},
{
- "name": "sync_client_async_server_test",
+ "name": "tips_publisher_test",
"build": "test",
"language": "c++",
"src": [
- "test/cpp/end2end/sync_client_async_server_test.cc"
+ "examples/tips/publisher_test.cc"
],
"deps": [
+ "tips_client_lib",
"grpc++_test_util",
"grpc_test_util",
"grpc++",
@@ -1721,13 +1756,15 @@
]
},
{
- "name": "thread_pool_test",
+ "name": "tips_subscriber_test",
"build": "test",
"language": "c++",
"src": [
- "test/cpp/server/thread_pool_test.cc"
+ "examples/tips/subscriber_test.cc"
],
"deps": [
+ "tips_client_lib",
+ "grpc++_test_util",
"grpc_test_util",
"grpc++",
"grpc",