diff options
author | Jorge Canizales <jcanizales@google.com> | 2015-06-19 16:30:31 -0700 |
---|---|---|
committer | Jorge Canizales <jcanizales@google.com> | 2015-06-23 21:38:24 -0700 |
commit | 44dc423f99330cc2266b5c18c6e89becf7c88684 (patch) | |
tree | 85c2fc440ffa50573418ec6390486542cff69423 /BUILD | |
parent | 870af21d65b6b21bb2dd6127797eee86c1aef727 (diff) |
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
Diffstat (limited to 'BUILD')
-rw-r--r-- | BUILD | 27 |
1 files changed, 27 insertions, 0 deletions
@@ -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"], +) |