aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/util/BUILD
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2017-10-08 21:16:12 -0700
committerGravatar Craig Tiller <ctiller@google.com>2017-10-08 21:16:12 -0700
commit922260656a288d302016d044ff1572be5dc61b8c (patch)
tree9b7578732fdfb48ecc07fd3e66cb3b69e6ae5094 /test/core/util/BUILD
parent313f36fd06c38384bfa89e9ee5f699c97ccc56d3 (diff)
C++ize BDP estimator, introduce ManualConstructor
Diffstat (limited to 'test/core/util/BUILD')
-rw-r--r--test/core/util/BUILD17
1 files changed, 15 insertions, 2 deletions
diff --git a/test/core/util/BUILD b/test/core/util/BUILD
index abb50a0c99..611cb1e664 100644
--- a/test/core/util/BUILD
+++ b/test/core/util/BUILD
@@ -32,9 +32,22 @@ grpc_cc_library(
)
grpc_cc_library(
- name = "grpc_test_util_base",
+ name = "grpc_debugger_macros",
srcs = [
"debugger_macros.c",
+ ],
+ hdrs = [
+ "debugger_macros.h",
+ ],
+ deps = [
+ ":gpr_test_util",
+ "//:grpc_common",
+ ],
+)
+
+grpc_cc_library(
+ name = "grpc_test_util_base",
+ srcs = [
"grpc_profiler.c",
"mock_endpoint.c",
"parse_hexstring.c",
@@ -47,7 +60,6 @@ grpc_cc_library(
"trickle_endpoint.c",
],
hdrs = [
- "debugger_macros.h",
"grpc_profiler.h",
"mock_endpoint.h",
"parse_hexstring.h",
@@ -63,6 +75,7 @@ grpc_cc_library(
deps = [
":gpr_test_util",
"//:grpc_common",
+ ":grpc_debugger_macros"
],
)