Skip to content

Commit

Permalink
Fixing merge failures on test/cpp/interop.
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasnoble committed Jul 13, 2017
1 parent 5d80dc4 commit 61f21d9
Showing 1 changed file with 9 additions and 14 deletions.
23 changes: 9 additions & 14 deletions test/cpp/interop/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -25,31 +25,30 @@ package(

grpc_cc_library(
name = "server_helper_lib",
language = "c++",
srcs = [
"server_helper.cc",
],
hdrs = [
"server_helper.h",
],
deps = [
"//test/cpp/util:test_util",
],
external_deps = [
"gflags",
],
language = "C++",
deps = [
"//test/cpp/util:test_util",
],
)

grpc_cc_binary(
name = "interop_server",
language = "c++",
srcs = [
"interop_server_bootstrap.cc",
],
language = "C++",
deps = [
"//:grpc++",
":interop_server_lib",
"//:grpc++",
],
)

Expand All @@ -70,7 +69,6 @@ grpc_cc_library(

grpc_cc_library(
name = "client_helper_lib",
language = "c++",
srcs = [
"client_helper.cc",
"interop_client.cc",
Expand All @@ -79,13 +77,14 @@ grpc_cc_library(
"client_helper.h",
"interop_client.h",
],
language = "C++",
deps = [
"//test/cpp/util:test_util",
"//src/proto/grpc/testing:empty_proto",
"//src/proto/grpc/testing:messages_proto",
"//src/proto/grpc/testing:test_proto",
"//test/core/security:oauth2_utils",
"//test/cpp/util:test_config",
"//test/cpp/util:test_util",
],
)

Expand Down Expand Up @@ -115,7 +114,7 @@ grpc_cc_binary(
grpc_cc_binary(
name = "reconnect_interop_server",
srcs = [
"reconnect_interop_server.cc"
"reconnect_interop_server.cc",
],
language = "C++",
deps = [
Expand All @@ -128,18 +127,14 @@ grpc_cc_binary(
grpc_cc_binary(
name = "stress_test",
srcs = [
"stress_test.cc",
"stress_interop_client.cc",
"stress_interop_client.h",
"stress_test.cc",
],
deps = [
":client_helper_lib",
"//:grpc++",
"//test/cpp/util:metrics_server_lib",
"//test/cpp/util:test_config",
name = "interop_client",
language = "c++",
deps = [
":interop_client_main",
],
)

0 comments on commit 61f21d9

Please sign in to comment.