mirror of https://github.com/grpc/grpc.git
Bazel builds of test/cpp/end2end:end2end_test were failing on Mac OS with v1.8.0 due to missing gtest symbols. The issue is not seen in v1.8.1. A WORKSPACE file was added to gtest repo in 1.8.1, so gtest.BUILD can be removed.pull/19412/head
parent
559e328799
commit
43628b286f
9 changed files with 8 additions and 64 deletions
@ -1 +1 @@ |
||||
Subproject commit ec44c6c1675c25b9827aacd08c02433cccde7780 |
||||
Subproject commit 2fe3bd994b3189899d93f1d5a881e725e046fdc2 |
@ -1,42 +0,0 @@ |
||||
cc_library( |
||||
name = "gtest", |
||||
srcs = [ |
||||
"googletest/src/gtest-all.cc", |
||||
], |
||||
hdrs = glob([ |
||||
"googletest/include/**/*.h", |
||||
"googletest/src/*.cc", |
||||
"googletest/src/*.h", |
||||
]), |
||||
includes = [ |
||||
"googletest", |
||||
"googletest/include", |
||||
], |
||||
linkstatic = 1, |
||||
visibility = [ |
||||
"//visibility:public", |
||||
], |
||||
) |
||||
|
||||
cc_library( |
||||
name = "gmock", |
||||
srcs = [ |
||||
"googlemock/src/gmock-all.cc" |
||||
], |
||||
hdrs = glob([ |
||||
"googlemock/include/**/*.h", |
||||
"googlemock/src/*.cc", |
||||
"googlemock/src/*.h" |
||||
]), |
||||
includes = [ |
||||
"googlemock", |
||||
"googlemock/include", |
||||
], |
||||
deps = [ |
||||
":gtest", |
||||
], |
||||
linkstatic = 1, |
||||
visibility = [ |
||||
"//visibility:public", |
||||
], |
||||
) |
Loading…
Reference in new issue