diff options
author | Craig Tiller <ctiller@google.com> | 2017-04-21 16:24:40 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2017-04-21 16:24:40 -0700 |
commit | 46436cbe31bd0bf4603b90046443c23a25295ac9 (patch) | |
tree | 55fa7ce465739326e411328a63657c16e904dc85 /test/cpp/util/BUILD | |
parent | 8e1fe5f16a97e73a864db9ae43664b31c489fa8b (diff) | |
parent | 9c92a69342607c9906088739df6cf0921a68f0b5 (diff) |
Merge github.com:grpc/grpc into trickle_stall
Diffstat (limited to 'test/cpp/util/BUILD')
-rw-r--r-- | test/cpp/util/BUILD | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/cpp/util/BUILD b/test/cpp/util/BUILD index 38f804ffd4..c83f89eb90 100644 --- a/test/cpp/util/BUILD +++ b/test/cpp/util/BUILD @@ -29,6 +29,15 @@ licenses(["notice"]) # 3-clause BSD +# The following builds a shared-object to confirm that grpc++_unsecure +# builds properly. Build-only is sufficient here +cc_binary( + name = "testso.so", + srcs = [], + deps = ["//:grpc++_unsecure"], + linkshared = 1, +) + cc_library( name = "test_config", srcs = [ |