BUILD 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. # Copyright 2017 gRPC authors.
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. load("//bazel:grpc_build_system.bzl", "grpc_cc_test", "grpc_package")
  15. grpc_package(name = "test/core/client_channel")
  16. licenses(["notice"])
  17. grpc_cc_test(
  18. name = "certificate_provider_registry_test",
  19. srcs = ["certificate_provider_registry_test.cc"],
  20. external_deps = ["gtest"],
  21. language = "C++",
  22. deps = [
  23. "//:gpr",
  24. "//:grpc",
  25. "//test/core/util:grpc_test_util",
  26. ],
  27. )
  28. grpc_cc_test(
  29. name = "retry_throttle_test",
  30. srcs = ["retry_throttle_test.cc"],
  31. external_deps = [
  32. "gtest",
  33. ],
  34. language = "C++",
  35. uses_polling = False,
  36. deps = [
  37. "//:gpr",
  38. "//:grpc",
  39. "//test/core/util:grpc_test_util",
  40. ],
  41. )
  42. grpc_cc_test(
  43. name = "service_config_test",
  44. srcs = ["service_config_test.cc"],
  45. external_deps = [
  46. "gtest",
  47. ],
  48. language = "C++",
  49. deps = [
  50. "//:gpr",
  51. "//:grpc",
  52. "//test/core/util:grpc_test_util",
  53. ],
  54. )
  55. grpc_cc_test(
  56. name = "rls_lb_config_parser_test",
  57. srcs = ["rls_lb_config_parser_test.cc"],
  58. external_deps = [
  59. "gtest",
  60. ],
  61. language = "C++",
  62. tags = ["no_test_ios"],
  63. deps = [
  64. "//:grpc",
  65. "//test/core/util:grpc_test_util",
  66. ],
  67. )