aboutsummaryrefslogtreecommitdiffhomepage
path: root/BUILD
diff options
context:
space:
mode:
authorGravatar Mark D. Roth <roth@google.com>2017-11-30 07:05:18 -0800
committerGravatar GitHub <noreply@github.com>2017-11-30 07:05:18 -0800
commit5f662537deb01539a204273977c7e32394fc3454 (patch)
tree47a9105fc6a25adad2a5e7c80cc9da72a27e969f /BUILD
parent926b09a888faf3a099ef9d70d67aa5f5f7dae20b (diff)
parent9aea2573913e504375e667d9f4500faa505b5abe (diff)
Merge pull request #13357 from markdroth/reference_counted
Add ReferenceCounted base class.
Diffstat (limited to 'BUILD')
-rw-r--r--BUILD22
1 files changed, 22 insertions, 0 deletions
diff --git a/BUILD b/BUILD
index df334cd322..d904a1ec6e 100644
--- a/BUILD
+++ b/BUILD
@@ -539,6 +539,28 @@ grpc_cc_library(
)
grpc_cc_library(
+ name = "debug_location",
+ public_hdrs = ["src/core/lib/support/debug_location.h"],
+ language = "c++",
+)
+
+grpc_cc_library(
+ name = "ref_counted",
+ public_hdrs = ["src/core/lib/support/ref_counted.h"],
+ language = "c++",
+ deps = [
+ "grpc_trace",
+ "debug_location",
+ ],
+)
+
+grpc_cc_library(
+ name = "ref_counted_ptr",
+ public_hdrs = ["src/core/lib/support/ref_counted_ptr.h"],
+ language = "c++",
+)
+
+grpc_cc_library(
name = "grpc_base_c",
srcs = [
"src/core/lib/backoff/backoff.cc",