@@ -1229,6 +1229,7 @@ add_library(grpc
1229
1229
src/core/ext/filters/client_channel/client_channel_factory.cc
1230
1230
src/core/ext/filters/client_channel/client_channel_plugin.cc
1231
1231
src/core/ext/filters/client_channel/connector.cc
1232
+ src/core/ext/filters/client_channel/health/health_check_client.cc
1232
1233
src/core/ext/filters/client_channel/http_connect_handshaker.cc
1233
1234
src/core/ext/filters/client_channel/http_proxy.cc
1234
1235
src/core/ext/filters/client_channel/lb_policy.cc
@@ -1245,6 +1246,7 @@ add_library(grpc
1245
1246
src/core/ext/filters/client_channel/subchannel_index.cc
1246
1247
src/core/ext/filters/client_channel/uri_parser.cc
1247
1248
src/core/ext/filters/deadline/deadline_filter.cc
1249
+ src/core/ext/filters/client_channel/health/health.pb.c
1248
1250
src/core/tsi/alts_transport_security.cc
1249
1251
src/core/tsi/fake_transport_security.cc
1250
1252
src/core/tsi/local_transport_security.cc
@@ -1579,6 +1581,7 @@ add_library(grpc_cronet
1579
1581
src/core/ext/filters/client_channel/client_channel_factory.cc
1580
1582
src/core/ext/filters/client_channel/client_channel_plugin.cc
1581
1583
src/core/ext/filters/client_channel/connector.cc
1584
+ src/core/ext/filters/client_channel/health/health_check_client.cc
1582
1585
src/core/ext/filters/client_channel/http_connect_handshaker.cc
1583
1586
src/core/ext/filters/client_channel/http_proxy.cc
1584
1587
src/core/ext/filters/client_channel/lb_policy.cc
@@ -1595,6 +1598,10 @@ add_library(grpc_cronet
1595
1598
src/core/ext/filters/client_channel/subchannel_index.cc
1596
1599
src/core/ext/filters/client_channel/uri_parser.cc
1597
1600
src/core/ext/filters/deadline/deadline_filter.cc
1601
+ src/core/ext/filters/client_channel/health/health.pb.c
1602
+ third_party/nanopb/pb_common.c
1603
+ third_party/nanopb/pb_decode.c
1604
+ third_party/nanopb/pb_encode.c
1598
1605
src/core/lib/http/httpcli_security_connector.cc
1599
1606
src/core/lib/security/context/security_context.cc
1600
1607
src/core/lib/security/credentials/alts/alts_credentials.cc
@@ -1656,9 +1663,6 @@ add_library(grpc_cronet
1656
1663
src/core/tsi/alts/handshaker/altscontext.pb.c
1657
1664
src/core/tsi/alts/handshaker/handshaker.pb.c
1658
1665
src/core/tsi/alts/handshaker/transport_security_common.pb.c
1659
- third_party/nanopb/pb_common.c
1660
- third_party/nanopb/pb_decode.c
1661
- third_party/nanopb/pb_encode.c
1662
1666
src/core/tsi/transport_security.cc
1663
1667
src/core/ext/transport/chttp2/client/insecure/channel_create.cc
1664
1668
src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc
@@ -1946,6 +1950,7 @@ add_library(grpc_test_util
1946
1950
src/core/ext/filters/client_channel/client_channel_factory.cc
1947
1951
src/core/ext/filters/client_channel/client_channel_plugin.cc
1948
1952
src/core/ext/filters/client_channel/connector.cc
1953
+ src/core/ext/filters/client_channel/health/health_check_client.cc
1949
1954
src/core/ext/filters/client_channel/http_connect_handshaker.cc
1950
1955
src/core/ext/filters/client_channel/http_proxy.cc
1951
1956
src/core/ext/filters/client_channel/lb_policy.cc
@@ -1962,6 +1967,10 @@ add_library(grpc_test_util
1962
1967
src/core/ext/filters/client_channel/subchannel_index.cc
1963
1968
src/core/ext/filters/client_channel/uri_parser.cc
1964
1969
src/core/ext/filters/deadline/deadline_filter.cc
1970
+ src/core/ext/filters/client_channel/health/health.pb.c
1971
+ third_party/nanopb/pb_common.c
1972
+ third_party/nanopb/pb_decode.c
1973
+ third_party/nanopb/pb_encode.c
1965
1974
src/core/ext/transport/chttp2/transport/bin_decoder.cc
1966
1975
src/core/ext/transport/chttp2/transport/bin_encoder.cc
1967
1976
src/core/ext/transport/chttp2/transport/chttp2_plugin.cc
@@ -2260,6 +2269,7 @@ add_library(grpc_test_util_unsecure
2260
2269
src/core/ext/filters/client_channel/client_channel_factory.cc
2261
2270
src/core/ext/filters/client_channel/client_channel_plugin.cc
2262
2271
src/core/ext/filters/client_channel/connector.cc
2272
+ src/core/ext/filters/client_channel/health/health_check_client.cc
2263
2273
src/core/ext/filters/client_channel/http_connect_handshaker.cc
2264
2274
src/core/ext/filters/client_channel/http_proxy.cc
2265
2275
src/core/ext/filters/client_channel/lb_policy.cc
@@ -2276,6 +2286,10 @@ add_library(grpc_test_util_unsecure
2276
2286
src/core/ext/filters/client_channel/subchannel_index.cc
2277
2287
src/core/ext/filters/client_channel/uri_parser.cc
2278
2288
src/core/ext/filters/deadline/deadline_filter.cc
2289
+ src/core/ext/filters/client_channel/health/health.pb.c
2290
+ third_party/nanopb/pb_common.c
2291
+ third_party/nanopb/pb_decode.c
2292
+ third_party/nanopb/pb_encode.c
2279
2293
src/core/ext/transport/chttp2/transport/bin_decoder.cc
2280
2294
src/core/ext/transport/chttp2/transport/bin_encoder.cc
2281
2295
src/core/ext/transport/chttp2/transport/chttp2_plugin.cc
@@ -2587,6 +2601,7 @@ add_library(grpc_unsecure
2587
2601
src/core/ext/filters/client_channel/client_channel_factory.cc
2588
2602
src/core/ext/filters/client_channel/client_channel_plugin.cc
2589
2603
src/core/ext/filters/client_channel/connector.cc
2604
+ src/core/ext/filters/client_channel/health/health_check_client.cc
2590
2605
src/core/ext/filters/client_channel/http_connect_handshaker.cc
2591
2606
src/core/ext/filters/client_channel/http_proxy.cc
2592
2607
src/core/ext/filters/client_channel/lb_policy.cc
@@ -2603,6 +2618,10 @@ add_library(grpc_unsecure
2603
2618
src/core/ext/filters/client_channel/subchannel_index.cc
2604
2619
src/core/ext/filters/client_channel/uri_parser.cc
2605
2620
src/core/ext/filters/deadline/deadline_filter.cc
2621
+ src/core/ext/filters/client_channel/health/health.pb.c
2622
+ third_party/nanopb/pb_common.c
2623
+ third_party/nanopb/pb_decode.c
2624
+ third_party/nanopb/pb_encode.c
2606
2625
src/core/ext/transport/inproc/inproc_plugin.cc
2607
2626
src/core/ext/transport/inproc/inproc_transport.cc
2608
2627
src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc
@@ -2621,9 +2640,6 @@ add_library(grpc_unsecure
2621
2640
src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.cc
2622
2641
src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc
2623
2642
src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc
2624
- third_party/nanopb/pb_common.c
2625
- third_party/nanopb/pb_decode.c
2626
- third_party/nanopb/pb_encode.c
2627
2643
src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/duration.pb.c
2628
2644
src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/timestamp.pb.c
2629
2645
src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c
@@ -2857,7 +2873,6 @@ add_library(grpc++
2857
2873
src/cpp/server/create_default_thread_pool.cc
2858
2874
src/cpp/server/dynamic_thread_pool.cc
2859
2875
src/cpp/server/health/default_health_check_service.cc
2860
- src/cpp/server/health/health.pb.c
2861
2876
src/cpp/server/health/health_check_service.cc
2862
2877
src/cpp/server/health/health_check_service_server_builder_option.cc
2863
2878
src/cpp/server/server_builder.cc
@@ -2870,6 +2885,10 @@ add_library(grpc++
2870
2885
src/cpp/util/status.cc
2871
2886
src/cpp/util/string_ref.cc
2872
2887
src/cpp/util/time_cc.cc
2888
+ src/core/ext/filters/client_channel/health/health.pb.c
2889
+ third_party/nanopb/pb_common.c
2890
+ third_party/nanopb/pb_decode.c
2891
+ third_party/nanopb/pb_encode.c
2873
2892
src/cpp/codegen/codegen_init.cc
2874
2893
)
2875
2894
@@ -3218,7 +3237,6 @@ add_library(grpc++_cronet
3218
3237
src/cpp/server/create_default_thread_pool.cc
3219
3238
src/cpp/server/dynamic_thread_pool.cc
3220
3239
src/cpp/server/health/default_health_check_service.cc
3221
- src/cpp/server/health/health.pb.c
3222
3240
src/cpp/server/health/health_check_service.cc
3223
3241
src/cpp/server/health/health_check_service_server_builder_option.cc
3224
3242
src/cpp/server/server_builder.cc
@@ -3231,6 +3249,10 @@ add_library(grpc++_cronet
3231
3249
src/cpp/util/status.cc
3232
3250
src/cpp/util/string_ref.cc
3233
3251
src/cpp/util/time_cc.cc
3252
+ src/core/ext/filters/client_channel/health/health.pb.c
3253
+ third_party/nanopb/pb_common.c
3254
+ third_party/nanopb/pb_decode.c
3255
+ third_party/nanopb/pb_encode.c
3234
3256
src/cpp/codegen/codegen_init.cc
3235
3257
src/core/ext/transport/chttp2/client/insecure/channel_create.cc
3236
3258
src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc
@@ -3421,6 +3443,7 @@ add_library(grpc++_cronet
3421
3443
src/core/ext/filters/client_channel/client_channel_factory.cc
3422
3444
src/core/ext/filters/client_channel/client_channel_plugin.cc
3423
3445
src/core/ext/filters/client_channel/connector.cc
3446
+ src/core/ext/filters/client_channel/health/health_check_client.cc
3424
3447
src/core/ext/filters/client_channel/http_connect_handshaker.cc
3425
3448
src/core/ext/filters/client_channel/http_proxy.cc
3426
3449
src/core/ext/filters/client_channel/lb_policy.cc
@@ -4341,7 +4364,6 @@ add_library(grpc++_unsecure
4341
4364
src/cpp/server/create_default_thread_pool.cc
4342
4365
src/cpp/server/dynamic_thread_pool.cc
4343
4366
src/cpp/server/health/default_health_check_service.cc
4344
- src/cpp/server/health/health.pb.c
4345
4367
src/cpp/server/health/health_check_service.cc
4346
4368
src/cpp/server/health/health_check_service_server_builder_option.cc
4347
4369
src/cpp/server/server_builder.cc
@@ -4354,6 +4376,10 @@ add_library(grpc++_unsecure
4354
4376
src/cpp/util/status.cc
4355
4377
src/cpp/util/string_ref.cc
4356
4378
src/cpp/util/time_cc.cc
4379
+ src/core/ext/filters/client_channel/health/health.pb.c
4380
+ third_party/nanopb/pb_common.c
4381
+ third_party/nanopb/pb_decode.c
4382
+ third_party/nanopb/pb_encode.c
4357
4383
src/cpp/codegen/codegen_init.cc
4358
4384
)
4359
4385
0 commit comments