aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/BUILD.template
Commit message (Collapse)AuthorAge
* Add protobuf_clib to deps of grpc++_codegen_libGravatar Rob Earhart2016-03-29
| | | | This is required in order to compile grpc++_codegen_lib.
* Fix the Bazel build re/nanopbGravatar Rob Earhart2016-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 deletionGravatar Craig Tiller2016-02-09
|
* Removing gpr as a separated library.Gravatar Nicolas "Pixel" Noble2016-01-30
|
* Add -std=gnu99 when building libgrpcGravatar Rob Earhart2016-01-21
|
* Hand-written changesGravatar Craig Tiller2015-08-31
|
* Let grpc target depend on //external:zlib so that "-lz" or a real zlibGravatar Ming Zhao2015-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.templateGravatar Jorge Canizales2015-07-02
|
* Add Bazel target for ObjC gRPC runtimeGravatar Jorge Canizales2015-06-29
|
* Fix indents of rx_library blaze targetGravatar Jorge Canizales2015-06-28
|
* Add roots.pem bundle to the Bazel target, and use a better bundle name.Gravatar Jorge Canizales2015-06-28
|
* Add BUILD target for GRPCClientGravatar Jorge Canizales2015-06-28
|
* Blaze dependency on //external:libssl_objcGravatar Jorge Canizales2015-06-26
|
* Switch to grpc secureGravatar Jorge Canizales2015-06-26
|
* Merge master into bazel-grpc-unsecured to solve conflictGravatar Jorge Canizales2015-06-24
|\
* | Add libz dependency to grpc_unsecure_objcGravatar Jorge Canizales2015-06-23
| |
* | Generate objc_library for grpc_unsecure & gprGravatar Jorge Canizales2015-06-23
| |
| * Add BUILD target for Objective-C's RxLibraryGravatar Jorge Canizales2015-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 templatesGravatar murgatroid992015-06-22
|
* Adding a helpful warning message on top of the Makefile and BUILD file.Gravatar Nicolas "Pixel" Noble2015-04-21
|
* Avoid generating libs for unknown types.Gravatar Yang Gao2015-04-16
|
* Extend bazel BUILD file to build all the C/C++ libraries as well asGravatar Ming Zhao2015-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.Gravatar Nicolas "Pixel" Noble2015-03-31