ya.make 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. GO_LIBRARY()
  2. LICENSE(Apache-2.0)
  3. SRCS(
  4. backoff.go
  5. balancer_conn_wrappers.go
  6. call.go
  7. clientconn.go
  8. codec.go
  9. dialoptions.go
  10. doc.go
  11. idle.go
  12. interceptor.go
  13. picker_wrapper.go
  14. pickfirst.go
  15. preloader.go
  16. resolver_conn_wrapper.go
  17. rpc_util.go
  18. server.go
  19. service_config.go
  20. stream.go
  21. trace.go
  22. version.go
  23. )
  24. GO_TEST_SRCS(
  25. clientconn_authority_test.go
  26. clientconn_parsed_target_test.go
  27. clientconn_test.go
  28. codec_test.go
  29. default_dial_option_server_option_test.go
  30. grpc_test.go
  31. idle_test.go
  32. picker_wrapper_test.go
  33. resolver_test.go
  34. rpc_util_test.go
  35. server_test.go
  36. service_config_test.go
  37. trace_test.go
  38. )
  39. END()
  40. RECURSE(
  41. admin
  42. attributes
  43. authz
  44. backoff
  45. balancer
  46. benchmark
  47. binarylog
  48. channelz
  49. codes
  50. connectivity
  51. credentials
  52. encoding
  53. # gotest
  54. grpclog
  55. health
  56. internal
  57. interop
  58. keepalive
  59. metadata
  60. orca
  61. peer
  62. profiling
  63. reflection
  64. resolver
  65. serviceconfig
  66. stats
  67. status
  68. stress
  69. tap
  70. # test
  71. testdata
  72. xds
  73. )