make objC InteropTests and MacTests buildable with bazel (#29620)

pull/29664/head
Jan Tattermusch 3 years ago committed by GitHub
parent 748a8d527f
commit ee6818cea1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      src/objective-c/tests/BUILD

@ -101,6 +101,7 @@ grpc_objc_testing_library(
hdrs = ["InteropTests/InteropTests.h"], hdrs = ["InteropTests/InteropTests.h"],
deps = [ deps = [
":InteropTestsBlockCallbacks-lib", ":InteropTestsBlockCallbacks-lib",
":TestBase-lib",
], ],
) )
@ -175,6 +176,15 @@ grpc_objc_testing_library(
"MacTests/*.m", "MacTests/*.m",
]), ]),
hdrs = ["MacTests/StressTests.h"], hdrs = ["MacTests/StressTests.h"],
deps = [
":TestBase-lib",
],
)
grpc_objc_testing_library(
name = "TestBase-lib",
srcs = ["TestBase.m"],
hdrs = ["TestBase.h"],
) )
ios_unit_test( ios_unit_test(

Loading…
Cancel
Save