diff options
author | Vijay Pai <vpai@google.com> | 2017-04-13 21:07:45 +0000 |
---|---|---|
committer | Vijay Pai <vpai@google.com> | 2017-04-20 22:21:01 +0000 |
commit | a935ae1505c768ca0ce6ea981af1fb03c56052d7 (patch) | |
tree | 40df68bf178813867728f135ee559cda1d4cf00c /test/cpp | |
parent | f5a1b750655496d044024c6aaff55c87e7915b2b (diff) |
Fix build rules for grpc++_unsecure, test that it builds properly
Diffstat (limited to 'test/cpp')
-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 = [ |