diff options
author | Craig Tiller <ctiller@google.com> | 2017-05-05 11:01:25 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2017-05-05 11:01:25 -0700 |
commit | 1f47730377077d37534d5d8215c617197e7cb368 (patch) | |
tree | 923a0d276ee69f1a786e28a06c7f3f6d426404b1 /BUILD | |
parent | f7d89568dc223c5f36b0b3fddb3f7d81f6c67010 (diff) |
Fix deps between grpc and tracer system
Diffstat (limited to 'BUILD')
-rw-r--r-- | BUILD | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -450,6 +450,13 @@ grpc_cc_library( ) grpc_cc_library( + name = "grpc_trace", + srcs = ["src/core/lib/debug/trace.c"], + hdrs = ["src/core/lib/debug/trace.h"], + deps = [":gpr"], +) + +grpc_cc_library( name = "grpc_base", srcs = [ "src/core/lib/channel/channel_args.c", @@ -461,7 +468,6 @@ grpc_cc_library( "src/core/lib/channel/handshaker_registry.c", "src/core/lib/compression/compression.c", "src/core/lib/compression/message_compress.c", - "src/core/lib/debug/trace.c", "src/core/lib/http/format_request.c", "src/core/lib/http/httpcli.c", "src/core/lib/http/parser.c", @@ -588,7 +594,6 @@ grpc_cc_library( "src/core/lib/channel/handshaker_registry.h", "src/core/lib/compression/algorithm_metadata.h", "src/core/lib/compression/message_compress.h", - "src/core/lib/debug/trace.h", "src/core/lib/http/format_request.h", "src/core/lib/http/httpcli.h", "src/core/lib/http/parser.h", @@ -709,6 +714,7 @@ grpc_cc_library( deps = [ "gpr_base", "grpc_codegen", + "grpc_trace", ], ) @@ -1246,6 +1252,7 @@ grpc_cc_library( language = "c", deps = [ "gpr", + "grpc_trace", ], ) |