aboutsummaryrefslogtreecommitdiffhomepage
path: root/BUILD
diff options
context:
space:
mode:
authorGravatar Mark D. Roth <roth@google.com>2017-11-27 14:53:26 -0800
committerGravatar Mark D. Roth <roth@google.com>2017-11-27 14:53:26 -0800
commit70db663ae8773dc45464c904603a3e73045b45c5 (patch)
treedc7b4b650ed6e898f8cf255237dc3f6f4b04eaeb /BUILD
parentde93112a3f70afa39d3e9aa87da165f9f737fdef (diff)
Add ReferenceCounted base class.
Diffstat (limited to 'BUILD')
-rw-r--r--BUILD17
1 files changed, 17 insertions, 0 deletions
diff --git a/BUILD b/BUILD
index 25daba8e1e..5289023ef5 100644
--- a/BUILD
+++ b/BUILD
@@ -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",