aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates
diff options
context:
space:
mode:
authorGravatar Jorge Canizales <jcanizales@google.com>2015-06-20 18:58:38 -0700
committerGravatar Jorge Canizales <jcanizales@google.com>2015-06-28 10:25:05 -0700
commit866255ec29ab09ce59950d0c3580b18b92d4db25 (patch)
tree20545ff0b1d73f5935a0fa5cb1c7375c6316d713 /templates
parent4dc4e3dffb9cfab2e077545d29e7b3c9bd786264 (diff)
Add BUILD target for GRPCClient
Diffstat (limited to 'templates')
-rw-r--r--templates/BUILD.template19
1 files changed, 19 insertions, 0 deletions
diff --git a/templates/BUILD.template b/templates/BUILD.template
index 76f06c2caa..0841b66e7c 100644
--- a/templates/BUILD.template
+++ b/templates/BUILD.template
@@ -179,3 +179,22 @@ objc_library(
srcs = glob([rx_library_path + "/private/*.m"]),
visibility = ["//visibility:private"],
)
+
+objc_client_path = objc_path + "/GRPCClient"
+
+objc_library(
+ name = "grpc_client",
+ hdrs = glob([
+ objc_client_path + "/*.h",
+ objc_client_path + "/private/*.h",
+ ]),
+ srcs = glob([
+ objc_client_path + "/*.m",
+ objc_client_path + "/private/*.m",
+ ]),
+ includes = [objc_path],
+ deps = [
+ ":grpc_objc",
+ ":rx_library",
+ ],
+)