diff options
author | Vijay Pai <vpai@google.com> | 2017-04-21 10:50:59 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-21 10:50:59 -0700 |
commit | 7748faf251b255d4e6f2dcd6e40c092136abfebd (patch) | |
tree | f40f4eb16d5584034225945c0f1914929fbc27ae /test/cpp | |
parent | 566fd3b36ee4077c9e02aae23bf1bfe13ea0028d (diff) | |
parent | 576e546019140a05cc88f896e7ff50d70704d719 (diff) |
Merge pull request #10639 from vjpai/buildfixes
Fix and test Bazel build rules
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 = [ |