From 44dc423f99330cc2266b5c18c6e89becf7c88684 Mon Sep 17 00:00:00 2001 From: Jorge Canizales Date: Fri, 19 Jun 2015 16:30:31 -0700 Subject: Add BUILD target for Objective-C's RxLibrary Part of https://github.com/grpc/grpc/issues/2120 Depends on https://github.com/grpc/grpc/pull/2193 --- BUILD | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) (limited to 'BUILD') diff --git a/BUILD b/BUILD index d7f0e5a588..ff07cd1132 100644 --- a/BUILD +++ b/BUILD @@ -853,3 +853,30 @@ cc_binary( + +objc_path = "src/objective-c" + +rx_library_path = objc_path + "/RxLibrary" + +objc_library( + name = "rx_library", + hdrs = glob([ + rx_library_path + "/*.h", + rx_library_path + "/transformations/*.h", + ]), + srcs = glob([ + rx_library_path + "/*.m", + rx_library_path + "/transformations/*.m", + ]), + includes = [objc_path], + deps = [ + ":rx_library_private", + ], +) + +objc_library( + name = "rx_library_private", + hdrs = glob([rx_library_path + "/private/*.h"]), + srcs = glob([rx_library_path + "/private/*.m"]), + visibility = ["//visibility:private"], +) -- cgit v1.2.3