Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Bazel: export LICENSE file. | Piotr Sikora | 2016-08-24 |
| | | | | Signed-off-by: Piotr Sikora <piotrsikora@google.com> | ||
* | Add protobuf_clib to deps of grpc++_codegen_lib | Rob Earhart | 2016-03-29 |
| | | | | This is required in order to compile grpc++_codegen_lib. | ||
* | Fix the Bazel build re/nanopb | Rob Earhart | 2016-03-29 |
| | | | | | | | | | This change modifies the BUILD rule dependencies used for nanopb, switching them from third_party to //external -- the former uses submodules, which don't work well with Bazel (since Bazel removes submodules from repositories as it fetches them, preferring instead to unify submodule versions across the workspace via the top-level WORKSPACE configuration). | ||
* | Rollback gpr deletion | Craig Tiller | 2016-02-09 |
| | |||
* | Removing gpr as a separated library. | Nicolas "Pixel" Noble | 2016-01-30 |
| | |||
* | Add -std=gnu99 when building libgrpc | Rob Earhart | 2016-01-21 |
| | |||
* | Hand-written changes | Craig Tiller | 2015-08-31 |
| | |||
* | Let grpc target depend on //external:zlib so that "-lz" or a real zlib | Ming Zhao | 2015-08-13 |
| | | | | | | target like https://github.com/google/kythe/blob/master/third_party/zlib/BUILD can be pulled in. | ||
* | Minor doc fix in BUILD and BUILD.template | Jorge Canizales | 2015-07-02 |
| | |||
* | Add Bazel target for ObjC gRPC runtime | Jorge Canizales | 2015-06-29 |
| | |||
* | Fix indents of rx_library blaze target | Jorge Canizales | 2015-06-28 |
| | |||
* | Add roots.pem bundle to the Bazel target, and use a better bundle name. | Jorge Canizales | 2015-06-28 |
| | |||
* | Add BUILD target for GRPCClient | Jorge Canizales | 2015-06-28 |
| | |||
* | Blaze dependency on //external:libssl_objc | Jorge Canizales | 2015-06-26 |
| | |||
* | Switch to grpc secure | Jorge Canizales | 2015-06-26 |
| | |||
* | Merge master into bazel-grpc-unsecured to solve conflict | Jorge Canizales | 2015-06-24 |
|\ | |||
* | | Add libz dependency to grpc_unsecure_objc | Jorge Canizales | 2015-06-23 |
| | | |||
* | | Generate objc_library for grpc_unsecure & gpr | Jorge Canizales | 2015-06-23 |
| | | |||
| * | Add BUILD target for Objective-C's RxLibrary | Jorge Canizales | 2015-06-23 |
|/ | | | | | Part of https://github.com/grpc/grpc/issues/2120 Depends on https://github.com/grpc/grpc/pull/2193 | ||
* | Added info about regenerating files to Makefile and BUILD templates | murgatroid99 | 2015-06-22 |
| | |||
* | Adding a helpful warning message on top of the Makefile and BUILD file. | Nicolas "Pixel" Noble | 2015-04-21 |
| | |||
* | Avoid generating libs for unknown types. | Yang Gao | 2015-04-16 |
| | |||
* | Extend bazel BUILD file to build all the C/C++ libraries as well as | Ming Zhao | 2015-04-10 |
| | | | | | | | | | | | | | | | | | | | | | | | protobuf plugins. This requires WORKSPACE to define these external dependencies for openssl and protobuf, for examples: bind( name = "libssl", actual = "//third_party/boringssl:boringssl", ) # Library needed to build protobuf codegen plugin. bind( name = "protobuf_compiler", actual = "//third_party/protobuf:protoc_lib", ) # Library that C++ code generated by protobuf C compiler should depend # on. bind( name = "protobuf_clib", actual = "//third_party/protobuf:proto_lib", ) | ||
* | Early support for Bazel. | Nicolas "Pixel" Noble | 2015-03-31 |