diff options
author | Mark D. Roth <roth@google.com> | 2017-11-27 14:53:26 -0800 |
---|---|---|
committer | Mark D. Roth <roth@google.com> | 2017-11-27 14:53:26 -0800 |
commit | 70db663ae8773dc45464c904603a3e73045b45c5 (patch) | |
tree | dc7b4b650ed6e898f8cf255237dc3f6f4b04eaeb /BUILD | |
parent | de93112a3f70afa39d3e9aa87da165f9f737fdef (diff) |
Add ReferenceCounted base class.
Diffstat (limited to 'BUILD')
-rw-r--r-- | BUILD | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -538,6 +538,23 @@ grpc_cc_library( ) grpc_cc_library( + name = "debug_location", + public_hdrs = ["src/core/lib/support/debug_location.h"], + language = "c++", +) + +grpc_cc_library( + name = "reference_counted", + srcs = ["src/core/lib/support/reference_counted.cc"], + public_hdrs = ["src/core/lib/support/reference_counted.h"], + language = "c++", + deps = [ + "grpc_trace", + "debug_location", + ], +) + +grpc_cc_library( name = "grpc_base_c", srcs = [ "src/core/lib/backoff/backoff.cc", |