|  | @@ -30,7 +30,8 @@ load(
 | 
	
		
			
				|  |  |      "//bazel:grpc_build_system.bzl",
 | 
	
		
			
				|  |  |      "grpc_cc_library",
 | 
	
		
			
				|  |  |      "grpc_generate_one_off_targets",
 | 
	
		
			
				|  |  | -    "grpc_proto_plugin",
 | 
	
		
			
				|  |  | +    "grpc_upb_proto_library",
 | 
	
		
			
				|  |  | +    "python_config_settings",
 | 
	
		
			
				|  |  |  )
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  config_setting(
 | 
	
	
		
			
				|  | @@ -64,21 +65,23 @@ config_setting(
 | 
	
		
			
				|  |  |  )
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  config_setting(
 | 
	
		
			
				|  |  | -    name = "python3",
 | 
	
		
			
				|  |  | -    values = {"python_path": "python3"},
 | 
	
		
			
				|  |  | +    name = "mac_x86_64",
 | 
	
		
			
				|  |  | +    values = {"cpu": "darwin"},
 | 
	
		
			
				|  |  |  )
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  config_setting(
 | 
	
		
			
				|  |  | -    name = "mac_x86_64",
 | 
	
		
			
				|  |  | -    values = {"cpu": "darwin"},
 | 
	
		
			
				|  |  | +    name = "grpc_use_cpp_std_lib",
 | 
	
		
			
				|  |  | +    values = {"define": "GRPC_USE_CPP_STD_LIB=1"},
 | 
	
		
			
				|  |  |  )
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +python_config_settings()
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |  # This should be updated along with build.yaml
 | 
	
		
			
				|  |  | -g_stands_for = "gandalf"
 | 
	
		
			
				|  |  | +g_stands_for = "game"
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  core_version = "7.0.0"
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -version = "1.21.0-dev"
 | 
	
		
			
				|  |  | +version = "1.25.0-dev"
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  GPR_PUBLIC_HDRS = [
 | 
	
		
			
				|  |  |      "include/grpc/support/alloc.h",
 | 
	
	
		
			
				|  | @@ -137,10 +140,12 @@ GRPCXX_SRCS = [
 | 
	
		
			
				|  |  |      "src/cpp/common/resource_quota_cc.cc",
 | 
	
		
			
				|  |  |      "src/cpp/common/rpc_method.cc",
 | 
	
		
			
				|  |  |      "src/cpp/common/version_cc.cc",
 | 
	
		
			
				|  |  | +    "src/cpp/common/validate_service_config.cc",
 | 
	
		
			
				|  |  |      "src/cpp/server/async_generic_service.cc",
 | 
	
		
			
				|  |  |      "src/cpp/server/channel_argument_option.cc",
 | 
	
		
			
				|  |  |      "src/cpp/server/create_default_thread_pool.cc",
 | 
	
		
			
				|  |  |      "src/cpp/server/dynamic_thread_pool.cc",
 | 
	
		
			
				|  |  | +    "src/cpp/server/external_connection_acceptor_impl.cc",
 | 
	
		
			
				|  |  |      "src/cpp/server/health/default_health_check_service.cc",
 | 
	
		
			
				|  |  |      "src/cpp/server/health/health_check_service.cc",
 | 
	
		
			
				|  |  |      "src/cpp/server/health/health_check_service_server_builder_option.cc",
 | 
	
	
		
			
				|  | @@ -160,6 +165,7 @@ GRPCXX_HDRS = [
 | 
	
		
			
				|  |  |      "src/cpp/client/create_channel_internal.h",
 | 
	
		
			
				|  |  |      "src/cpp/common/channel_filter.h",
 | 
	
		
			
				|  |  |      "src/cpp/server/dynamic_thread_pool.h",
 | 
	
		
			
				|  |  | +    "src/cpp/server/external_connection_acceptor_impl.h",
 | 
	
		
			
				|  |  |      "src/cpp/server/health/default_health_check_service.h",
 | 
	
		
			
				|  |  |      "src/cpp/server/thread_pool_interface.h",
 | 
	
		
			
				|  |  |      "src/cpp/thread_manager/thread_manager.h",
 | 
	
	
		
			
				|  | @@ -216,8 +222,10 @@ GRPCXX_PUBLIC_HDRS = [
 | 
	
		
			
				|  |  |      "include/grpcpp/alarm.h",
 | 
	
		
			
				|  |  |      "include/grpcpp/alarm_impl.h",
 | 
	
		
			
				|  |  |      "include/grpcpp/channel.h",
 | 
	
		
			
				|  |  | +    "include/grpcpp/channel_impl.h",
 | 
	
		
			
				|  |  |      "include/grpcpp/client_context.h",
 | 
	
		
			
				|  |  |      "include/grpcpp/completion_queue.h",
 | 
	
		
			
				|  |  | +    "include/grpcpp/completion_queue_impl.h",
 | 
	
		
			
				|  |  |      "include/grpcpp/create_channel.h",
 | 
	
		
			
				|  |  |      "include/grpcpp/create_channel_impl.h",
 | 
	
		
			
				|  |  |      "include/grpcpp/create_channel_posix.h",
 | 
	
	
		
			
				|  | @@ -256,24 +264,30 @@ GRPCXX_PUBLIC_HDRS = [
 | 
	
		
			
				|  |  |      "include/grpcpp/security/server_credentials.h",
 | 
	
		
			
				|  |  |      "include/grpcpp/security/server_credentials_impl.h",
 | 
	
		
			
				|  |  |      "include/grpcpp/server.h",
 | 
	
		
			
				|  |  | +    "include/grpcpp/server_impl.h",
 | 
	
		
			
				|  |  |      "include/grpcpp/server_builder.h",
 | 
	
		
			
				|  |  |      "include/grpcpp/server_builder_impl.h",
 | 
	
		
			
				|  |  |      "include/grpcpp/server_context.h",
 | 
	
		
			
				|  |  |      "include/grpcpp/server_posix.h",
 | 
	
		
			
				|  |  |      "include/grpcpp/server_posix_impl.h",
 | 
	
		
			
				|  |  |      "include/grpcpp/support/async_stream.h",
 | 
	
		
			
				|  |  | +    "include/grpcpp/support/async_stream_impl.h",
 | 
	
		
			
				|  |  |      "include/grpcpp/support/async_unary_call.h",
 | 
	
		
			
				|  |  | +    "include/grpcpp/support/async_unary_call_impl.h",
 | 
	
		
			
				|  |  |      "include/grpcpp/support/byte_buffer.h",
 | 
	
		
			
				|  |  |      "include/grpcpp/support/channel_arguments.h",
 | 
	
		
			
				|  |  |      "include/grpcpp/support/channel_arguments_impl.h",
 | 
	
		
			
				|  |  |      "include/grpcpp/support/client_callback.h",
 | 
	
		
			
				|  |  | +    "include/grpcpp/support/client_callback_impl.h",
 | 
	
		
			
				|  |  |      "include/grpcpp/support/client_interceptor.h",
 | 
	
		
			
				|  |  |      "include/grpcpp/support/config.h",
 | 
	
		
			
				|  |  |      "include/grpcpp/support/interceptor.h",
 | 
	
		
			
				|  |  |      "include/grpcpp/support/message_allocator.h",
 | 
	
		
			
				|  |  | +    "include/grpcpp/support/method_handler.h",
 | 
	
		
			
				|  |  |      "include/grpcpp/support/proto_buffer_reader.h",
 | 
	
		
			
				|  |  |      "include/grpcpp/support/proto_buffer_writer.h",
 | 
	
		
			
				|  |  |      "include/grpcpp/support/server_callback.h",
 | 
	
		
			
				|  |  | +    "include/grpcpp/support/server_callback_impl.h",
 | 
	
		
			
				|  |  |      "include/grpcpp/support/server_interceptor.h",
 | 
	
		
			
				|  |  |      "include/grpcpp/support/slice.h",
 | 
	
		
			
				|  |  |      "include/grpcpp/support/status.h",
 | 
	
	
		
			
				|  | @@ -281,7 +295,9 @@ GRPCXX_PUBLIC_HDRS = [
 | 
	
		
			
				|  |  |      "include/grpcpp/support/string_ref.h",
 | 
	
		
			
				|  |  |      "include/grpcpp/support/stub_options.h",
 | 
	
		
			
				|  |  |      "include/grpcpp/support/sync_stream.h",
 | 
	
		
			
				|  |  | +    "include/grpcpp/support/sync_stream_impl.h",
 | 
	
		
			
				|  |  |      "include/grpcpp/support/time.h",
 | 
	
		
			
				|  |  | +    "include/grpcpp/support/validate_service_config.h",
 | 
	
		
			
				|  |  |  ]
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  grpc_cc_library(
 | 
	
	
		
			
				|  | @@ -330,21 +346,6 @@ grpc_cc_library(
 | 
	
		
			
				|  |  |      ],
 | 
	
		
			
				|  |  |  )
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -grpc_cc_library(
 | 
	
		
			
				|  |  | -    name = "grpc_cronet",
 | 
	
		
			
				|  |  | -    srcs = [
 | 
	
		
			
				|  |  | -        "src/core/lib/surface/init.cc",
 | 
	
		
			
				|  |  | -        "src/core/plugin_registry/grpc_cronet_plugin_registry.cc",
 | 
	
		
			
				|  |  | -    ],
 | 
	
		
			
				|  |  | -    language = "c++",
 | 
	
		
			
				|  |  | -    deps = [
 | 
	
		
			
				|  |  | -        "grpc_base",
 | 
	
		
			
				|  |  | -        "grpc_http_filters",
 | 
	
		
			
				|  |  | -        "grpc_transport_chttp2_client_secure",
 | 
	
		
			
				|  |  | -        "grpc_transport_cronet_client_secure",
 | 
	
		
			
				|  |  | -    ],
 | 
	
		
			
				|  |  | -)
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  |  grpc_cc_library(
 | 
	
		
			
				|  |  |      name = "grpc++_public_hdrs",
 | 
	
		
			
				|  |  |      hdrs = GRPCXX_PUBLIC_HDRS,
 | 
	
	
		
			
				|  | @@ -417,91 +418,6 @@ grpc_cc_library(
 | 
	
		
			
				|  |  |      ],
 | 
	
		
			
				|  |  |  )
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -grpc_cc_library(
 | 
	
		
			
				|  |  | -    name = "grpc_plugin_support",
 | 
	
		
			
				|  |  | -    srcs = [
 | 
	
		
			
				|  |  | -        "src/compiler/cpp_generator.cc",
 | 
	
		
			
				|  |  | -        "src/compiler/csharp_generator.cc",
 | 
	
		
			
				|  |  | -        "src/compiler/node_generator.cc",
 | 
	
		
			
				|  |  | -        "src/compiler/objective_c_generator.cc",
 | 
	
		
			
				|  |  | -        "src/compiler/php_generator.cc",
 | 
	
		
			
				|  |  | -        "src/compiler/python_generator.cc",
 | 
	
		
			
				|  |  | -        "src/compiler/ruby_generator.cc",
 | 
	
		
			
				|  |  | -    ],
 | 
	
		
			
				|  |  | -    hdrs = [
 | 
	
		
			
				|  |  | -        "src/compiler/config.h",
 | 
	
		
			
				|  |  | -        "src/compiler/cpp_generator.h",
 | 
	
		
			
				|  |  | -        "src/compiler/cpp_generator_helpers.h",
 | 
	
		
			
				|  |  | -        "src/compiler/csharp_generator.h",
 | 
	
		
			
				|  |  | -        "src/compiler/csharp_generator_helpers.h",
 | 
	
		
			
				|  |  | -        "src/compiler/generator_helpers.h",
 | 
	
		
			
				|  |  | -        "src/compiler/node_generator.h",
 | 
	
		
			
				|  |  | -        "src/compiler/node_generator_helpers.h",
 | 
	
		
			
				|  |  | -        "src/compiler/objective_c_generator.h",
 | 
	
		
			
				|  |  | -        "src/compiler/objective_c_generator_helpers.h",
 | 
	
		
			
				|  |  | -        "src/compiler/php_generator.h",
 | 
	
		
			
				|  |  | -        "src/compiler/php_generator_helpers.h",
 | 
	
		
			
				|  |  | -        "src/compiler/protobuf_plugin.h",
 | 
	
		
			
				|  |  | -        "src/compiler/python_generator.h",
 | 
	
		
			
				|  |  | -        "src/compiler/python_generator_helpers.h",
 | 
	
		
			
				|  |  | -        "src/compiler/python_private_generator.h",
 | 
	
		
			
				|  |  | -        "src/compiler/ruby_generator.h",
 | 
	
		
			
				|  |  | -        "src/compiler/ruby_generator_helpers-inl.h",
 | 
	
		
			
				|  |  | -        "src/compiler/ruby_generator_map-inl.h",
 | 
	
		
			
				|  |  | -        "src/compiler/ruby_generator_string-inl.h",
 | 
	
		
			
				|  |  | -        "src/compiler/schema_interface.h",
 | 
	
		
			
				|  |  | -    ],
 | 
	
		
			
				|  |  | -    external_deps = [
 | 
	
		
			
				|  |  | -        "protobuf_clib",
 | 
	
		
			
				|  |  | -    ],
 | 
	
		
			
				|  |  | -    language = "c++",
 | 
	
		
			
				|  |  | -    deps = [
 | 
	
		
			
				|  |  | -        "grpc++_config_proto",
 | 
	
		
			
				|  |  | -    ],
 | 
	
		
			
				|  |  | -)
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -grpc_proto_plugin(
 | 
	
		
			
				|  |  | -    name = "grpc_cpp_plugin",
 | 
	
		
			
				|  |  | -    srcs = ["src/compiler/cpp_plugin.cc"],
 | 
	
		
			
				|  |  | -    deps = [":grpc_plugin_support"],
 | 
	
		
			
				|  |  | -)
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -grpc_proto_plugin(
 | 
	
		
			
				|  |  | -    name = "grpc_csharp_plugin",
 | 
	
		
			
				|  |  | -    srcs = ["src/compiler/csharp_plugin.cc"],
 | 
	
		
			
				|  |  | -    deps = [":grpc_plugin_support"],
 | 
	
		
			
				|  |  | -)
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -grpc_proto_plugin(
 | 
	
		
			
				|  |  | -    name = "grpc_node_plugin",
 | 
	
		
			
				|  |  | -    srcs = ["src/compiler/node_plugin.cc"],
 | 
	
		
			
				|  |  | -    deps = [":grpc_plugin_support"],
 | 
	
		
			
				|  |  | -)
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -grpc_proto_plugin(
 | 
	
		
			
				|  |  | -    name = "grpc_objective_c_plugin",
 | 
	
		
			
				|  |  | -    srcs = ["src/compiler/objective_c_plugin.cc"],
 | 
	
		
			
				|  |  | -    deps = [":grpc_plugin_support"],
 | 
	
		
			
				|  |  | -)
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -grpc_proto_plugin(
 | 
	
		
			
				|  |  | -    name = "grpc_php_plugin",
 | 
	
		
			
				|  |  | -    srcs = ["src/compiler/php_plugin.cc"],
 | 
	
		
			
				|  |  | -    deps = [":grpc_plugin_support"],
 | 
	
		
			
				|  |  | -)
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -grpc_proto_plugin(
 | 
	
		
			
				|  |  | -    name = "grpc_python_plugin",
 | 
	
		
			
				|  |  | -    srcs = ["src/compiler/python_plugin.cc"],
 | 
	
		
			
				|  |  | -    deps = [":grpc_plugin_support"],
 | 
	
		
			
				|  |  | -)
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -grpc_proto_plugin(
 | 
	
		
			
				|  |  | -    name = "grpc_ruby_plugin",
 | 
	
		
			
				|  |  | -    srcs = ["src/compiler/ruby_plugin.cc"],
 | 
	
		
			
				|  |  | -    deps = [":grpc_plugin_support"],
 | 
	
		
			
				|  |  | -)
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  |  grpc_cc_library(
 | 
	
		
			
				|  |  |      name = "grpc_csharp_ext",
 | 
	
		
			
				|  |  |      srcs = [
 | 
	
	
		
			
				|  | @@ -551,13 +467,11 @@ grpc_cc_library(
 | 
	
		
			
				|  |  |          "src/core/lib/gpr/env_linux.cc",
 | 
	
		
			
				|  |  |          "src/core/lib/gpr/env_posix.cc",
 | 
	
		
			
				|  |  |          "src/core/lib/gpr/env_windows.cc",
 | 
	
		
			
				|  |  | -        "src/core/lib/gpr/host_port.cc",
 | 
	
		
			
				|  |  |          "src/core/lib/gpr/log.cc",
 | 
	
		
			
				|  |  |          "src/core/lib/gpr/log_android.cc",
 | 
	
		
			
				|  |  |          "src/core/lib/gpr/log_linux.cc",
 | 
	
		
			
				|  |  |          "src/core/lib/gpr/log_posix.cc",
 | 
	
		
			
				|  |  |          "src/core/lib/gpr/log_windows.cc",
 | 
	
		
			
				|  |  | -        "src/core/lib/gpr/mpscq.cc",
 | 
	
		
			
				|  |  |          "src/core/lib/gpr/murmur_hash.cc",
 | 
	
		
			
				|  |  |          "src/core/lib/gpr/string.cc",
 | 
	
		
			
				|  |  |          "src/core/lib/gpr/string_posix.cc",
 | 
	
	
		
			
				|  | @@ -577,6 +491,9 @@ grpc_cc_library(
 | 
	
		
			
				|  |  |          "src/core/lib/gpr/wrap_memcpy.cc",
 | 
	
		
			
				|  |  |          "src/core/lib/gprpp/arena.cc",
 | 
	
		
			
				|  |  |          "src/core/lib/gprpp/fork.cc",
 | 
	
		
			
				|  |  | +        "src/core/lib/gprpp/global_config_env.cc",
 | 
	
		
			
				|  |  | +        "src/core/lib/gprpp/host_port.cc",
 | 
	
		
			
				|  |  | +        "src/core/lib/gprpp/mpscq.cc",
 | 
	
		
			
				|  |  |          "src/core/lib/gprpp/thd_posix.cc",
 | 
	
		
			
				|  |  |          "src/core/lib/gprpp/thd_windows.cc",
 | 
	
		
			
				|  |  |          "src/core/lib/profiling/basic_timers.cc",
 | 
	
	
		
			
				|  | @@ -586,8 +503,6 @@ grpc_cc_library(
 | 
	
		
			
				|  |  |          "src/core/lib/gpr/alloc.h",
 | 
	
		
			
				|  |  |          "src/core/lib/gpr/arena.h",
 | 
	
		
			
				|  |  |          "src/core/lib/gpr/env.h",
 | 
	
		
			
				|  |  | -        "src/core/lib/gpr/host_port.h",
 | 
	
		
			
				|  |  | -        "src/core/lib/gpr/mpscq.h",
 | 
	
		
			
				|  |  |          "src/core/lib/gpr/murmur_hash.h",
 | 
	
		
			
				|  |  |          "src/core/lib/gpr/spinlock.h",
 | 
	
		
			
				|  |  |          "src/core/lib/gpr/string.h",
 | 
	
	
		
			
				|  | @@ -603,10 +518,17 @@ grpc_cc_library(
 | 
	
		
			
				|  |  |          "src/core/lib/gprpp/arena.h",
 | 
	
		
			
				|  |  |          "src/core/lib/gprpp/atomic.h",
 | 
	
		
			
				|  |  |          "src/core/lib/gprpp/fork.h",
 | 
	
		
			
				|  |  | +        "src/core/lib/gprpp/global_config.h",
 | 
	
		
			
				|  |  | +        "src/core/lib/gprpp/global_config_custom.h",
 | 
	
		
			
				|  |  | +        "src/core/lib/gprpp/global_config_env.h",
 | 
	
		
			
				|  |  | +        "src/core/lib/gprpp/global_config_generic.h",
 | 
	
		
			
				|  |  | +        "src/core/lib/gprpp/host_port.h",
 | 
	
		
			
				|  |  |          "src/core/lib/gprpp/manual_constructor.h",
 | 
	
		
			
				|  |  |          "src/core/lib/gprpp/map.h",
 | 
	
		
			
				|  |  |          "src/core/lib/gprpp/memory.h",
 | 
	
		
			
				|  |  | +        "src/core/lib/gprpp/mpscq.h",
 | 
	
		
			
				|  |  |          "src/core/lib/gprpp/pair.h",
 | 
	
		
			
				|  |  | +        "src/core/lib/gprpp/string_view.h",
 | 
	
		
			
				|  |  |          "src/core/lib/gprpp/sync.h",
 | 
	
		
			
				|  |  |          "src/core/lib/gprpp/thd.h",
 | 
	
		
			
				|  |  |          "src/core/lib/profiling/timers.h",
 | 
	
	
		
			
				|  | @@ -615,6 +537,7 @@ grpc_cc_library(
 | 
	
		
			
				|  |  |      public_hdrs = GPR_PUBLIC_HDRS,
 | 
	
		
			
				|  |  |      deps = [
 | 
	
		
			
				|  |  |          "gpr_codegen",
 | 
	
		
			
				|  |  | +        "grpc_codegen",
 | 
	
		
			
				|  |  |      ],
 | 
	
		
			
				|  |  |  )
 | 
	
		
			
				|  |  |  
 | 
	
	
		
			
				|  | @@ -770,6 +693,8 @@ grpc_cc_library(
 | 
	
		
			
				|  |  |          "src/core/lib/iomgr/ev_windows.cc",
 | 
	
		
			
				|  |  |          "src/core/lib/iomgr/exec_ctx.cc",
 | 
	
		
			
				|  |  |          "src/core/lib/iomgr/executor.cc",
 | 
	
		
			
				|  |  | +        "src/core/lib/iomgr/executor/mpmcqueue.cc",
 | 
	
		
			
				|  |  | +        "src/core/lib/iomgr/executor/threadpool.cc",
 | 
	
		
			
				|  |  |          "src/core/lib/iomgr/fork_posix.cc",
 | 
	
		
			
				|  |  |          "src/core/lib/iomgr/fork_windows.cc",
 | 
	
		
			
				|  |  |          "src/core/lib/iomgr/gethostname_fallback.cc",
 | 
	
	
		
			
				|  | @@ -927,6 +852,8 @@ grpc_cc_library(
 | 
	
		
			
				|  |  |          "src/core/lib/iomgr/ev_posix.h",
 | 
	
		
			
				|  |  |          "src/core/lib/iomgr/exec_ctx.h",
 | 
	
		
			
				|  |  |          "src/core/lib/iomgr/executor.h",
 | 
	
		
			
				|  |  | +        "src/core/lib/iomgr/executor/mpmcqueue.h",
 | 
	
		
			
				|  |  | +        "src/core/lib/iomgr/executor/threadpool.h",
 | 
	
		
			
				|  |  |          "src/core/lib/iomgr/gethostname.h",
 | 
	
		
			
				|  |  |          "src/core/lib/iomgr/gevent_util.h",
 | 
	
		
			
				|  |  |          "src/core/lib/iomgr/grpc_if_nametoindex.h",
 | 
	
	
		
			
				|  | @@ -989,6 +916,7 @@ grpc_cc_library(
 | 
	
		
			
				|  |  |          "src/core/lib/slice/slice_hash_table.h",
 | 
	
		
			
				|  |  |          "src/core/lib/slice/slice_internal.h",
 | 
	
		
			
				|  |  |          "src/core/lib/slice/slice_string_helpers.h",
 | 
	
		
			
				|  |  | +        "src/core/lib/slice/slice_utils.h",
 | 
	
		
			
				|  |  |          "src/core/lib/slice/slice_weak_hash_table.h",
 | 
	
		
			
				|  |  |          "src/core/lib/surface/api_trace.h",
 | 
	
		
			
				|  |  |          "src/core/lib/surface/call.h",
 | 
	
	
		
			
				|  | @@ -1020,7 +948,7 @@ grpc_cc_library(
 | 
	
		
			
				|  |  |          "src/core/lib/uri/uri_parser.h",
 | 
	
		
			
				|  |  |      ],
 | 
	
		
			
				|  |  |      external_deps = [
 | 
	
		
			
				|  |  | -        "zlib",
 | 
	
		
			
				|  |  | +        "madler_zlib",
 | 
	
		
			
				|  |  |      ],
 | 
	
		
			
				|  |  |      language = "c++",
 | 
	
		
			
				|  |  |      public_hdrs = GRPC_PUBLIC_HDRS,
 | 
	
	
		
			
				|  | @@ -1060,12 +988,14 @@ grpc_cc_library(
 | 
	
		
			
				|  |  |          "grpc_client_authority_filter",
 | 
	
		
			
				|  |  |          "grpc_lb_policy_pick_first",
 | 
	
		
			
				|  |  |          "grpc_lb_policy_round_robin",
 | 
	
		
			
				|  |  | +        "grpc_client_idle_filter",
 | 
	
		
			
				|  |  |          "grpc_max_age_filter",
 | 
	
		
			
				|  |  |          "grpc_message_size_filter",
 | 
	
		
			
				|  |  |          "grpc_resolver_dns_ares",
 | 
	
		
			
				|  |  |          "grpc_resolver_fake",
 | 
	
		
			
				|  |  |          "grpc_resolver_dns_native",
 | 
	
		
			
				|  |  |          "grpc_resolver_sockaddr",
 | 
	
		
			
				|  |  | +        "grpc_resolver_xds",
 | 
	
		
			
				|  |  |          "grpc_transport_chttp2_client_insecure",
 | 
	
		
			
				|  |  |          "grpc_transport_chttp2_server_insecure",
 | 
	
		
			
				|  |  |          "grpc_transport_inproc",
 | 
	
	
		
			
				|  | @@ -1078,6 +1008,7 @@ grpc_cc_library(
 | 
	
		
			
				|  |  |      name = "grpc_client_channel",
 | 
	
		
			
				|  |  |      srcs = [
 | 
	
		
			
				|  |  |          "src/core/ext/filters/client_channel/backup_poller.cc",
 | 
	
		
			
				|  |  | +        "src/core/ext/filters/client_channel/backend_metric.cc",
 | 
	
		
			
				|  |  |          "src/core/ext/filters/client_channel/channel_connectivity.cc",
 | 
	
		
			
				|  |  |          "src/core/ext/filters/client_channel/client_channel.cc",
 | 
	
		
			
				|  |  |          "src/core/ext/filters/client_channel/client_channel_channelz.cc",
 | 
	
	
		
			
				|  | @@ -1106,6 +1037,7 @@ grpc_cc_library(
 | 
	
		
			
				|  |  |      ],
 | 
	
		
			
				|  |  |      hdrs = [
 | 
	
		
			
				|  |  |          "src/core/ext/filters/client_channel/backup_poller.h",
 | 
	
		
			
				|  |  | +        "src/core/ext/filters/client_channel/backend_metric.h",
 | 
	
		
			
				|  |  |          "src/core/ext/filters/client_channel/client_channel.h",
 | 
	
		
			
				|  |  |          "src/core/ext/filters/client_channel/client_channel_channelz.h",
 | 
	
		
			
				|  |  |          "src/core/ext/filters/client_channel/client_channel_factory.h",
 | 
	
	
		
			
				|  | @@ -1130,15 +1062,17 @@ grpc_cc_library(
 | 
	
		
			
				|  |  |          "src/core/ext/filters/client_channel/server_address.h",
 | 
	
		
			
				|  |  |          "src/core/ext/filters/client_channel/service_config.h",
 | 
	
		
			
				|  |  |          "src/core/ext/filters/client_channel/subchannel.h",
 | 
	
		
			
				|  |  | +        "src/core/ext/filters/client_channel/subchannel_interface.h",
 | 
	
		
			
				|  |  |          "src/core/ext/filters/client_channel/subchannel_pool_interface.h",
 | 
	
		
			
				|  |  |      ],
 | 
	
		
			
				|  |  |      language = "c++",
 | 
	
		
			
				|  |  |      deps = [
 | 
	
		
			
				|  |  | +        "envoy_orca_upb",
 | 
	
		
			
				|  |  |          "gpr_base",
 | 
	
		
			
				|  |  |          "grpc_base",
 | 
	
		
			
				|  |  |          "grpc_client_authority_filter",
 | 
	
		
			
				|  |  |          "grpc_deadline_filter",
 | 
	
		
			
				|  |  | -        "health_proto",
 | 
	
		
			
				|  |  | +        "grpc_health_upb",
 | 
	
		
			
				|  |  |          "inlined_vector",
 | 
	
		
			
				|  |  |          "orphanable",
 | 
	
		
			
				|  |  |          "ref_counted",
 | 
	
	
		
			
				|  | @@ -1146,6 +1080,17 @@ grpc_cc_library(
 | 
	
		
			
				|  |  |      ],
 | 
	
		
			
				|  |  |  )
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +grpc_cc_library(
 | 
	
		
			
				|  |  | +    name = "grpc_client_idle_filter",
 | 
	
		
			
				|  |  | +    srcs = [
 | 
	
		
			
				|  |  | +        "src/core/ext/filters/client_idle/client_idle_filter.cc",
 | 
	
		
			
				|  |  | +    ],
 | 
	
		
			
				|  |  | +    language = "c++",
 | 
	
		
			
				|  |  | +    deps = [
 | 
	
		
			
				|  |  | +        "grpc_base",
 | 
	
		
			
				|  |  | +    ],
 | 
	
		
			
				|  |  | +)
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |  grpc_cc_library(
 | 
	
		
			
				|  |  |      name = "grpc_max_age_filter",
 | 
	
		
			
				|  |  |      srcs = [
 | 
	
	
		
			
				|  | @@ -1255,38 +1200,6 @@ grpc_cc_library(
 | 
	
		
			
				|  |  |      ],
 | 
	
		
			
				|  |  |  )
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -grpc_cc_library(
 | 
	
		
			
				|  |  | -    name = "health_proto",
 | 
	
		
			
				|  |  | -    srcs = [
 | 
	
		
			
				|  |  | -        "src/core/ext/filters/client_channel/health/health.pb.c",
 | 
	
		
			
				|  |  | -    ],
 | 
	
		
			
				|  |  | -    hdrs = [
 | 
	
		
			
				|  |  | -        "src/core/ext/filters/client_channel/health/health.pb.h",
 | 
	
		
			
				|  |  | -    ],
 | 
	
		
			
				|  |  | -    external_deps = [
 | 
	
		
			
				|  |  | -        "nanopb",
 | 
	
		
			
				|  |  | -    ],
 | 
	
		
			
				|  |  | -    language = "c++",
 | 
	
		
			
				|  |  | -)
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -grpc_cc_library(
 | 
	
		
			
				|  |  | -    name = "grpclb_proto",
 | 
	
		
			
				|  |  | -    srcs = [
 | 
	
		
			
				|  |  | -        "src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/duration.pb.c",
 | 
	
		
			
				|  |  | -        "src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/timestamp.pb.c",
 | 
	
		
			
				|  |  | -        "src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c",
 | 
	
		
			
				|  |  | -    ],
 | 
	
		
			
				|  |  | -    hdrs = [
 | 
	
		
			
				|  |  | -        "src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/duration.pb.h",
 | 
	
		
			
				|  |  | -        "src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/timestamp.pb.h",
 | 
	
		
			
				|  |  | -        "src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h",
 | 
	
		
			
				|  |  | -    ],
 | 
	
		
			
				|  |  | -    external_deps = [
 | 
	
		
			
				|  |  | -        "nanopb",
 | 
	
		
			
				|  |  | -    ],
 | 
	
		
			
				|  |  | -    language = "c++",
 | 
	
		
			
				|  |  | -)
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  |  grpc_cc_library(
 | 
	
		
			
				|  |  |      name = "grpc_lb_policy_grpclb",
 | 
	
		
			
				|  |  |      srcs = [
 | 
	
	
		
			
				|  | @@ -1303,15 +1216,13 @@ grpc_cc_library(
 | 
	
		
			
				|  |  |          "src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h",
 | 
	
		
			
				|  |  |          "src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h",
 | 
	
		
			
				|  |  |      ],
 | 
	
		
			
				|  |  | -    external_deps = [
 | 
	
		
			
				|  |  | -        "nanopb",
 | 
	
		
			
				|  |  | -    ],
 | 
	
		
			
				|  |  |      language = "c++",
 | 
	
		
			
				|  |  |      deps = [
 | 
	
		
			
				|  |  |          "grpc_base",
 | 
	
		
			
				|  |  |          "grpc_client_channel",
 | 
	
		
			
				|  |  | +        "grpc_lb_upb",
 | 
	
		
			
				|  |  |          "grpc_resolver_fake",
 | 
	
		
			
				|  |  | -        "grpclb_proto",
 | 
	
		
			
				|  |  | +        "grpc_transport_chttp2_client_insecure",
 | 
	
		
			
				|  |  |      ],
 | 
	
		
			
				|  |  |  )
 | 
	
		
			
				|  |  |  
 | 
	
	
		
			
				|  | @@ -1331,16 +1242,14 @@ grpc_cc_library(
 | 
	
		
			
				|  |  |          "src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h",
 | 
	
		
			
				|  |  |          "src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h",
 | 
	
		
			
				|  |  |      ],
 | 
	
		
			
				|  |  | -    external_deps = [
 | 
	
		
			
				|  |  | -        "nanopb",
 | 
	
		
			
				|  |  | -    ],
 | 
	
		
			
				|  |  |      language = "c++",
 | 
	
		
			
				|  |  |      deps = [
 | 
	
		
			
				|  |  |          "grpc_base",
 | 
	
		
			
				|  |  |          "grpc_client_channel",
 | 
	
		
			
				|  |  | +        "grpc_lb_upb",
 | 
	
		
			
				|  |  |          "grpc_resolver_fake",
 | 
	
		
			
				|  |  |          "grpc_secure",
 | 
	
		
			
				|  |  | -        "grpclb_proto",
 | 
	
		
			
				|  |  | +        "grpc_transport_chttp2_client_secure",
 | 
	
		
			
				|  |  |      ],
 | 
	
		
			
				|  |  |  )
 | 
	
		
			
				|  |  |  
 | 
	
	
		
			
				|  | @@ -1358,15 +1267,13 @@ grpc_cc_library(
 | 
	
		
			
				|  |  |          "src/core/ext/filters/client_channel/lb_policy/xds/xds_client_stats.h",
 | 
	
		
			
				|  |  |          "src/core/ext/filters/client_channel/lb_policy/xds/xds_load_balancer_api.h",
 | 
	
		
			
				|  |  |      ],
 | 
	
		
			
				|  |  | -    external_deps = [
 | 
	
		
			
				|  |  | -        "nanopb",
 | 
	
		
			
				|  |  | -    ],
 | 
	
		
			
				|  |  |      language = "c++",
 | 
	
		
			
				|  |  |      deps = [
 | 
	
		
			
				|  |  | +        "envoy_ads_upb",
 | 
	
		
			
				|  |  |          "grpc_base",
 | 
	
		
			
				|  |  |          "grpc_client_channel",
 | 
	
		
			
				|  |  |          "grpc_resolver_fake",
 | 
	
		
			
				|  |  | -        "grpclb_proto",
 | 
	
		
			
				|  |  | +        "grpc_transport_chttp2_client_insecure",
 | 
	
		
			
				|  |  |      ],
 | 
	
		
			
				|  |  |  )
 | 
	
		
			
				|  |  |  
 | 
	
	
		
			
				|  | @@ -1384,16 +1291,14 @@ grpc_cc_library(
 | 
	
		
			
				|  |  |          "src/core/ext/filters/client_channel/lb_policy/xds/xds_client_stats.h",
 | 
	
		
			
				|  |  |          "src/core/ext/filters/client_channel/lb_policy/xds/xds_load_balancer_api.h",
 | 
	
		
			
				|  |  |      ],
 | 
	
		
			
				|  |  | -    external_deps = [
 | 
	
		
			
				|  |  | -        "nanopb",
 | 
	
		
			
				|  |  | -    ],
 | 
	
		
			
				|  |  |      language = "c++",
 | 
	
		
			
				|  |  |      deps = [
 | 
	
		
			
				|  |  | +        "envoy_ads_upb",
 | 
	
		
			
				|  |  |          "grpc_base",
 | 
	
		
			
				|  |  |          "grpc_client_channel",
 | 
	
		
			
				|  |  |          "grpc_resolver_fake",
 | 
	
		
			
				|  |  |          "grpc_secure",
 | 
	
		
			
				|  |  | -        "grpclb_proto",
 | 
	
		
			
				|  |  | +        "grpc_transport_chttp2_client_secure",
 | 
	
		
			
				|  |  |      ],
 | 
	
		
			
				|  |  |  )
 | 
	
		
			
				|  |  |  
 | 
	
	
		
			
				|  | @@ -1553,6 +1458,20 @@ grpc_cc_library(
 | 
	
		
			
				|  |  |      ],
 | 
	
		
			
				|  |  |  )
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +grpc_cc_library(
 | 
	
		
			
				|  |  | +    name = "grpc_resolver_dns_selection",
 | 
	
		
			
				|  |  | +    srcs = [
 | 
	
		
			
				|  |  | +        "src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.cc",
 | 
	
		
			
				|  |  | +    ],
 | 
	
		
			
				|  |  | +    hdrs = [
 | 
	
		
			
				|  |  | +        "src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.h",
 | 
	
		
			
				|  |  | +    ],
 | 
	
		
			
				|  |  | +    language = "c++",
 | 
	
		
			
				|  |  | +    deps = [
 | 
	
		
			
				|  |  | +        "grpc_base",
 | 
	
		
			
				|  |  | +    ],
 | 
	
		
			
				|  |  | +)
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |  grpc_cc_library(
 | 
	
		
			
				|  |  |      name = "grpc_resolver_dns_native",
 | 
	
		
			
				|  |  |      srcs = [
 | 
	
	
		
			
				|  | @@ -1562,6 +1481,7 @@ grpc_cc_library(
 | 
	
		
			
				|  |  |      deps = [
 | 
	
		
			
				|  |  |          "grpc_base",
 | 
	
		
			
				|  |  |          "grpc_client_channel",
 | 
	
		
			
				|  |  | +        "grpc_resolver_dns_selection",
 | 
	
		
			
				|  |  |      ],
 | 
	
		
			
				|  |  |  )
 | 
	
		
			
				|  |  |  
 | 
	
	
		
			
				|  | @@ -1570,10 +1490,12 @@ grpc_cc_library(
 | 
	
		
			
				|  |  |      srcs = [
 | 
	
		
			
				|  |  |          "src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc",
 | 
	
		
			
				|  |  |          "src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.cc",
 | 
	
		
			
				|  |  | +        "src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_libuv.cc",
 | 
	
		
			
				|  |  |          "src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc",
 | 
	
		
			
				|  |  |          "src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc",
 | 
	
		
			
				|  |  |          "src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc",
 | 
	
		
			
				|  |  |          "src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc",
 | 
	
		
			
				|  |  | +        "src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_libuv.cc",
 | 
	
		
			
				|  |  |          "src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc",
 | 
	
		
			
				|  |  |          "src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc",
 | 
	
		
			
				|  |  |      ],
 | 
	
	
		
			
				|  | @@ -1589,6 +1511,7 @@ grpc_cc_library(
 | 
	
		
			
				|  |  |      deps = [
 | 
	
		
			
				|  |  |          "grpc_base",
 | 
	
		
			
				|  |  |          "grpc_client_channel",
 | 
	
		
			
				|  |  | +        "grpc_resolver_dns_selection",
 | 
	
		
			
				|  |  |      ],
 | 
	
		
			
				|  |  |  )
 | 
	
		
			
				|  |  |  
 | 
	
	
		
			
				|  | @@ -1616,6 +1539,18 @@ grpc_cc_library(
 | 
	
		
			
				|  |  |      ],
 | 
	
		
			
				|  |  |  )
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +grpc_cc_library(
 | 
	
		
			
				|  |  | +    name = "grpc_resolver_xds",
 | 
	
		
			
				|  |  | +    srcs = [
 | 
	
		
			
				|  |  | +        "src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc",
 | 
	
		
			
				|  |  | +    ],
 | 
	
		
			
				|  |  | +    language = "c++",
 | 
	
		
			
				|  |  | +    deps = [
 | 
	
		
			
				|  |  | +        "grpc_base",
 | 
	
		
			
				|  |  | +        "grpc_client_channel",
 | 
	
		
			
				|  |  | +    ],
 | 
	
		
			
				|  |  | +)
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |  grpc_cc_library(
 | 
	
		
			
				|  |  |      name = "grpc_secure",
 | 
	
		
			
				|  |  |      srcs = [
 | 
	
	
		
			
				|  | @@ -1646,6 +1581,7 @@ grpc_cc_library(
 | 
	
		
			
				|  |  |          "src/core/lib/security/security_connector/security_connector.cc",
 | 
	
		
			
				|  |  |          "src/core/lib/security/security_connector/ssl/ssl_security_connector.cc",
 | 
	
		
			
				|  |  |          "src/core/lib/security/security_connector/ssl_utils.cc",
 | 
	
		
			
				|  |  | +        "src/core/lib/security/security_connector/ssl_utils_config.cc",
 | 
	
		
			
				|  |  |          "src/core/lib/security/security_connector/tls/spiffe_security_connector.cc",
 | 
	
		
			
				|  |  |          "src/core/lib/security/transport/client_auth_filter.cc",
 | 
	
		
			
				|  |  |          "src/core/lib/security/transport/secure_endpoint.cc",
 | 
	
	
		
			
				|  | @@ -1683,6 +1619,7 @@ grpc_cc_library(
 | 
	
		
			
				|  |  |          "src/core/lib/security/security_connector/security_connector.h",
 | 
	
		
			
				|  |  |          "src/core/lib/security/security_connector/ssl/ssl_security_connector.h",
 | 
	
		
			
				|  |  |          "src/core/lib/security/security_connector/ssl_utils.h",
 | 
	
		
			
				|  |  | +        "src/core/lib/security/security_connector/ssl_utils_config.h",
 | 
	
		
			
				|  |  |          "src/core/lib/security/security_connector/tls/spiffe_security_connector.h",
 | 
	
		
			
				|  |  |          "src/core/lib/security/transport/auth_filters.h",
 | 
	
		
			
				|  |  |          "src/core/lib/security/transport/secure_endpoint.h",
 | 
	
	
		
			
				|  | @@ -1866,29 +1803,6 @@ grpc_cc_library(
 | 
	
		
			
				|  |  |      ],
 | 
	
		
			
				|  |  |  )
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -grpc_cc_library(
 | 
	
		
			
				|  |  | -    name = "grpc_transport_cronet_client_secure",
 | 
	
		
			
				|  |  | -    srcs = [
 | 
	
		
			
				|  |  | -        "src/core/ext/transport/cronet/client/secure/cronet_channel_create.cc",
 | 
	
		
			
				|  |  | -        "src/core/ext/transport/cronet/transport/cronet_api_dummy.cc",
 | 
	
		
			
				|  |  | -        "src/core/ext/transport/cronet/transport/cronet_transport.cc",
 | 
	
		
			
				|  |  | -    ],
 | 
	
		
			
				|  |  | -    hdrs = [
 | 
	
		
			
				|  |  | -        "src/core/ext/transport/cronet/transport/cronet_transport.h",
 | 
	
		
			
				|  |  | -        "third_party/objective_c/Cronet/bidirectional_stream_c.h",
 | 
	
		
			
				|  |  | -    ],
 | 
	
		
			
				|  |  | -    language = "c++",
 | 
	
		
			
				|  |  | -    public_hdrs = [
 | 
	
		
			
				|  |  | -        "include/grpc/grpc_cronet.h",
 | 
	
		
			
				|  |  | -        "include/grpc/grpc_security.h",
 | 
	
		
			
				|  |  | -        "include/grpc/grpc_security_constants.h",
 | 
	
		
			
				|  |  | -    ],
 | 
	
		
			
				|  |  | -    deps = [
 | 
	
		
			
				|  |  | -        "grpc_base",
 | 
	
		
			
				|  |  | -        "grpc_transport_chttp2",
 | 
	
		
			
				|  |  | -    ],
 | 
	
		
			
				|  |  | -)
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  |  grpc_cc_library(
 | 
	
		
			
				|  |  |      name = "grpc_transport_inproc",
 | 
	
		
			
				|  |  |      srcs = [
 | 
	
	
		
			
				|  | @@ -1965,24 +1879,6 @@ grpc_cc_library(
 | 
	
		
			
				|  |  |      ],
 | 
	
		
			
				|  |  |  )
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -grpc_cc_library(
 | 
	
		
			
				|  |  | -    name = "alts_proto",
 | 
	
		
			
				|  |  | -    srcs = [
 | 
	
		
			
				|  |  | -        "src/core/tsi/alts/handshaker/altscontext.pb.c",
 | 
	
		
			
				|  |  | -        "src/core/tsi/alts/handshaker/handshaker.pb.c",
 | 
	
		
			
				|  |  | -        "src/core/tsi/alts/handshaker/transport_security_common.pb.c",
 | 
	
		
			
				|  |  | -    ],
 | 
	
		
			
				|  |  | -    hdrs = [
 | 
	
		
			
				|  |  | -        "src/core/tsi/alts/handshaker/altscontext.pb.h",
 | 
	
		
			
				|  |  | -        "src/core/tsi/alts/handshaker/handshaker.pb.h",
 | 
	
		
			
				|  |  | -        "src/core/tsi/alts/handshaker/transport_security_common.pb.h",
 | 
	
		
			
				|  |  | -    ],
 | 
	
		
			
				|  |  | -    external_deps = [
 | 
	
		
			
				|  |  | -        "nanopb",
 | 
	
		
			
				|  |  | -    ],
 | 
	
		
			
				|  |  | -    language = "c++",
 | 
	
		
			
				|  |  | -)
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  |  grpc_cc_library(
 | 
	
		
			
				|  |  |      name = "alts_util",
 | 
	
		
			
				|  |  |      srcs = [
 | 
	
	
		
			
				|  | @@ -1993,24 +1889,17 @@ grpc_cc_library(
 | 
	
		
			
				|  |  |          "src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc",
 | 
	
		
			
				|  |  |          "src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc",
 | 
	
		
			
				|  |  |          "src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc",
 | 
	
		
			
				|  |  | -        "src/core/tsi/alts/handshaker/alts_handshaker_service_api.cc",
 | 
	
		
			
				|  |  | -        "src/core/tsi/alts/handshaker/alts_handshaker_service_api_util.cc",
 | 
	
		
			
				|  |  |          "src/core/tsi/alts/handshaker/transport_security_common_api.cc",
 | 
	
		
			
				|  |  |      ],
 | 
	
		
			
				|  |  |      hdrs = [
 | 
	
		
			
				|  |  |          "src/core/lib/security/credentials/alts/check_gcp_environment.h",
 | 
	
		
			
				|  |  |          "src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h",
 | 
	
		
			
				|  |  | -        "src/core/tsi/alts/handshaker/alts_handshaker_service_api.h",
 | 
	
		
			
				|  |  | -        "src/core/tsi/alts/handshaker/alts_handshaker_service_api_util.h",
 | 
	
		
			
				|  |  |          "src/core/tsi/alts/handshaker/transport_security_common_api.h",
 | 
	
		
			
				|  |  |      ],
 | 
	
		
			
				|  |  | -    external_deps = [
 | 
	
		
			
				|  |  | -        "nanopb",
 | 
	
		
			
				|  |  | -    ],
 | 
	
		
			
				|  |  |      language = "c++",
 | 
	
		
			
				|  |  |      public_hdrs = GRPC_SECURE_PUBLIC_HDRS,
 | 
	
		
			
				|  |  |      deps = [
 | 
	
		
			
				|  |  | -        "alts_proto",
 | 
	
		
			
				|  |  | +        "alts_upb",
 | 
	
		
			
				|  |  |          "gpr",
 | 
	
		
			
				|  |  |          "grpc_base",
 | 
	
		
			
				|  |  |      ],
 | 
	
	
		
			
				|  | @@ -2069,7 +1958,7 @@ grpc_cc_library(
 | 
	
		
			
				|  |  |      deps = [
 | 
	
		
			
				|  |  |          "grpc",
 | 
	
		
			
				|  |  |          "grpc++_codegen_base",
 | 
	
		
			
				|  |  | -        "health_proto",
 | 
	
		
			
				|  |  | +        "grpc_health_upb",
 | 
	
		
			
				|  |  |      ],
 | 
	
		
			
				|  |  |  )
 | 
	
		
			
				|  |  |  
 | 
	
	
		
			
				|  | @@ -2081,8 +1970,8 @@ grpc_cc_library(
 | 
	
		
			
				|  |  |      public_hdrs = GRPCXX_PUBLIC_HDRS,
 | 
	
		
			
				|  |  |      deps = [
 | 
	
		
			
				|  |  |          "grpc++_codegen_base",
 | 
	
		
			
				|  |  | +        "grpc_health_upb",
 | 
	
		
			
				|  |  |          "grpc_unsecure",
 | 
	
		
			
				|  |  | -        "health_proto",
 | 
	
		
			
				|  |  |      ],
 | 
	
		
			
				|  |  |  )
 | 
	
		
			
				|  |  |  
 | 
	
	
		
			
				|  | @@ -2122,7 +2011,9 @@ grpc_cc_library(
 | 
	
		
			
				|  |  |          "include/grpc++/impl/codegen/time.h",
 | 
	
		
			
				|  |  |          "include/grpcpp/impl/codegen/async_generic_service.h",
 | 
	
		
			
				|  |  |          "include/grpcpp/impl/codegen/async_stream.h",
 | 
	
		
			
				|  |  | +        "include/grpcpp/impl/codegen/async_stream_impl.h",
 | 
	
		
			
				|  |  |          "include/grpcpp/impl/codegen/async_unary_call.h",
 | 
	
		
			
				|  |  | +        "include/grpcpp/impl/codegen/async_unary_call_impl.h",
 | 
	
		
			
				|  |  |          "include/grpcpp/impl/codegen/byte_buffer.h",
 | 
	
		
			
				|  |  |          "include/grpcpp/impl/codegen/call.h",
 | 
	
		
			
				|  |  |          "include/grpcpp/impl/codegen/call_hook.h",
 | 
	
	
		
			
				|  | @@ -2131,27 +2022,34 @@ grpc_cc_library(
 | 
	
		
			
				|  |  |          "include/grpcpp/impl/codegen/callback_common.h",
 | 
	
		
			
				|  |  |          "include/grpcpp/impl/codegen/channel_interface.h",
 | 
	
		
			
				|  |  |          "include/grpcpp/impl/codegen/client_callback.h",
 | 
	
		
			
				|  |  | +        "include/grpcpp/impl/codegen/client_callback_impl.h",
 | 
	
		
			
				|  |  |          "include/grpcpp/impl/codegen/client_context.h",
 | 
	
		
			
				|  |  | +        "include/grpcpp/impl/codegen/client_context_impl.h",
 | 
	
		
			
				|  |  |          "include/grpcpp/impl/codegen/client_interceptor.h",
 | 
	
		
			
				|  |  |          "include/grpcpp/impl/codegen/client_unary_call.h",
 | 
	
		
			
				|  |  |          "include/grpcpp/impl/codegen/completion_queue.h",
 | 
	
		
			
				|  |  | +        "include/grpcpp/impl/codegen/completion_queue_impl.h",
 | 
	
		
			
				|  |  |          "include/grpcpp/impl/codegen/completion_queue_tag.h",
 | 
	
		
			
				|  |  |          "include/grpcpp/impl/codegen/config.h",
 | 
	
		
			
				|  |  |          "include/grpcpp/impl/codegen/core_codegen_interface.h",
 | 
	
		
			
				|  |  |          "include/grpcpp/impl/codegen/create_auth_context.h",
 | 
	
		
			
				|  |  | +        "include/grpcpp/impl/codegen/delegating_channel.h",
 | 
	
		
			
				|  |  |          "include/grpcpp/impl/codegen/grpc_library.h",
 | 
	
		
			
				|  |  |          "include/grpcpp/impl/codegen/intercepted_channel.h",
 | 
	
		
			
				|  |  |          "include/grpcpp/impl/codegen/interceptor.h",
 | 
	
		
			
				|  |  |          "include/grpcpp/impl/codegen/interceptor_common.h",
 | 
	
		
			
				|  |  |          "include/grpcpp/impl/codegen/message_allocator.h",
 | 
	
		
			
				|  |  |          "include/grpcpp/impl/codegen/metadata_map.h",
 | 
	
		
			
				|  |  | +        "include/grpcpp/impl/codegen/method_handler.h",
 | 
	
		
			
				|  |  |          "include/grpcpp/impl/codegen/method_handler_impl.h",
 | 
	
		
			
				|  |  |          "include/grpcpp/impl/codegen/rpc_method.h",
 | 
	
		
			
				|  |  |          "include/grpcpp/impl/codegen/rpc_service_method.h",
 | 
	
		
			
				|  |  |          "include/grpcpp/impl/codegen/security/auth_context.h",
 | 
	
		
			
				|  |  |          "include/grpcpp/impl/codegen/serialization_traits.h",
 | 
	
		
			
				|  |  |          "include/grpcpp/impl/codegen/server_callback.h",
 | 
	
		
			
				|  |  | +        "include/grpcpp/impl/codegen/server_callback_impl.h",
 | 
	
		
			
				|  |  |          "include/grpcpp/impl/codegen/server_context.h",
 | 
	
		
			
				|  |  | +        "include/grpcpp/impl/codegen/server_context_impl.h",
 | 
	
		
			
				|  |  |          "include/grpcpp/impl/codegen/server_interceptor.h",
 | 
	
		
			
				|  |  |          "include/grpcpp/impl/codegen/server_interface.h",
 | 
	
		
			
				|  |  |          "include/grpcpp/impl/codegen/service_type.h",
 | 
	
	
		
			
				|  | @@ -2161,6 +2059,7 @@ grpc_cc_library(
 | 
	
		
			
				|  |  |          "include/grpcpp/impl/codegen/string_ref.h",
 | 
	
		
			
				|  |  |          "include/grpcpp/impl/codegen/stub_options.h",
 | 
	
		
			
				|  |  |          "include/grpcpp/impl/codegen/sync_stream.h",
 | 
	
		
			
				|  |  | +        "include/grpcpp/impl/codegen/sync_stream_impl.h",
 | 
	
		
			
				|  |  |          "include/grpcpp/impl/codegen/time.h",
 | 
	
		
			
				|  |  |      ],
 | 
	
		
			
				|  |  |      deps = [
 | 
	
	
		
			
				|  | @@ -2335,28 +2234,48 @@ grpc_cc_library(
 | 
	
		
			
				|  |  |      ],
 | 
	
		
			
				|  |  |  )
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -#TODO: Get this into build.yaml once we start using it.
 | 
	
		
			
				|  |  | -grpc_cc_library(
 | 
	
		
			
				|  |  | -    name = "envoy_lrs_upb",
 | 
	
		
			
				|  |  | -    srcs = [
 | 
	
		
			
				|  |  | -        "src/core/ext/upb-generated/envoy/api/v2/endpoint/load_report.upb.c",
 | 
	
		
			
				|  |  | -        "src/core/ext/upb-generated/envoy/service/load_stats/v2/lrs.upb.c",
 | 
	
		
			
				|  |  | -    ],
 | 
	
		
			
				|  |  | -    hdrs = [
 | 
	
		
			
				|  |  | -        "src/core/ext/upb-generated/envoy/api/v2/endpoint/load_report.upb.h",
 | 
	
		
			
				|  |  | -        "src/core/ext/upb-generated/envoy/service/load_stats/v2/lrs.upb.h",
 | 
	
		
			
				|  |  | -    ],
 | 
	
		
			
				|  |  | -    language = "c++",
 | 
	
		
			
				|  |  | -    external_deps = [
 | 
	
		
			
				|  |  | -        "upb_lib",
 | 
	
		
			
				|  |  | -    ],
 | 
	
		
			
				|  |  | -    deps = [
 | 
	
		
			
				|  |  | -        ":envoy_core_upb",
 | 
	
		
			
				|  |  | -        ":google_api_upb",
 | 
	
		
			
				|  |  | -        ":proto_gen_validate_upb",
 | 
	
		
			
				|  |  | -    ],
 | 
	
		
			
				|  |  | -    tags = ["no_windows"],
 | 
	
		
			
				|  |  | -)
 | 
	
		
			
				|  |  | +# Once upb code-gen issue is resolved, use the targets commented below to replace the ones using
 | 
	
		
			
				|  |  | +# upb-generated files.
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +# grpc_upb_proto_library(
 | 
	
		
			
				|  |  | +#     name = "upb_load_report",
 | 
	
		
			
				|  |  | +#     deps = ["@envoy_api//envoy/api/v2/endpoint:load_report_export"],
 | 
	
		
			
				|  |  | +# )
 | 
	
		
			
				|  |  | +#
 | 
	
		
			
				|  |  | +# grpc_upb_proto_library(
 | 
	
		
			
				|  |  | +#     name = "upb_lrs",
 | 
	
		
			
				|  |  | +#     deps = ["@envoy_api//envoy/service/load_stats/v2:lrs_export"],
 | 
	
		
			
				|  |  | +# )
 | 
	
		
			
				|  |  | +#
 | 
	
		
			
				|  |  | +# grpc_upb_proto_library(
 | 
	
		
			
				|  |  | +#     name = "upb_cds",
 | 
	
		
			
				|  |  | +#     deps = ["@envoy_api//envoy/api/v2:cds_export"],
 | 
	
		
			
				|  |  | +# )
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +# grpc_cc_library(
 | 
	
		
			
				|  |  | +#    name = "envoy_lrs_upb",
 | 
	
		
			
				|  |  | +#    external_deps = [
 | 
	
		
			
				|  |  | +#        "upb_lib",
 | 
	
		
			
				|  |  | +#    ],
 | 
	
		
			
				|  |  | +#    language = "c++",
 | 
	
		
			
				|  |  | +#    tags = ["no_windows"],
 | 
	
		
			
				|  |  | +#    deps = [
 | 
	
		
			
				|  |  | +#        ":upb_load_report",
 | 
	
		
			
				|  |  | +#        ":upb_lrs",
 | 
	
		
			
				|  |  | +#    ],
 | 
	
		
			
				|  |  | +# )
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +# grpc_cc_library(
 | 
	
		
			
				|  |  | +#    name = "envoy_ads_upb",
 | 
	
		
			
				|  |  | +#    external_deps = [
 | 
	
		
			
				|  |  | +#        "upb_lib",
 | 
	
		
			
				|  |  | +#    ],
 | 
	
		
			
				|  |  | +#    language = "c++",
 | 
	
		
			
				|  |  | +#    tags = ["no_windows"],
 | 
	
		
			
				|  |  | +#    deps = [
 | 
	
		
			
				|  |  | +#        ":upb_cds",
 | 
	
		
			
				|  |  | +#    ],
 | 
	
		
			
				|  |  | +# )
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  grpc_cc_library(
 | 
	
		
			
				|  |  |      name = "envoy_ads_upb",
 | 
	
	
		
			
				|  | @@ -2364,21 +2283,27 @@ grpc_cc_library(
 | 
	
		
			
				|  |  |          "src/core/ext/upb-generated/envoy/api/v2/auth/cert.upb.c",
 | 
	
		
			
				|  |  |          "src/core/ext/upb-generated/envoy/api/v2/cds.upb.c",
 | 
	
		
			
				|  |  |          "src/core/ext/upb-generated/envoy/api/v2/cluster/circuit_breaker.upb.c",
 | 
	
		
			
				|  |  | +        "src/core/ext/upb-generated/envoy/api/v2/cluster/filter.upb.c",
 | 
	
		
			
				|  |  |          "src/core/ext/upb-generated/envoy/api/v2/cluster/outlier_detection.upb.c",
 | 
	
		
			
				|  |  |          "src/core/ext/upb-generated/envoy/api/v2/discovery.upb.c",
 | 
	
		
			
				|  |  |          "src/core/ext/upb-generated/envoy/api/v2/eds.upb.c",
 | 
	
		
			
				|  |  |          "src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint.upb.c",
 | 
	
		
			
				|  |  | +        "src/core/ext/upb-generated/envoy/api/v2/endpoint/load_report.upb.c",
 | 
	
		
			
				|  |  |          "src/core/ext/upb-generated/envoy/service/discovery/v2/ads.upb.c",
 | 
	
		
			
				|  |  | +        "src/core/ext/upb-generated/envoy/service/load_stats/v2/lrs.upb.c",
 | 
	
		
			
				|  |  |      ],
 | 
	
		
			
				|  |  |      hdrs = [
 | 
	
		
			
				|  |  |          "src/core/ext/upb-generated/envoy/api/v2/auth/cert.upb.h",
 | 
	
		
			
				|  |  |          "src/core/ext/upb-generated/envoy/api/v2/cds.upb.h",
 | 
	
		
			
				|  |  |          "src/core/ext/upb-generated/envoy/api/v2/cluster/circuit_breaker.upb.h",
 | 
	
		
			
				|  |  | +        "src/core/ext/upb-generated/envoy/api/v2/cluster/filter.upb.h",
 | 
	
		
			
				|  |  |          "src/core/ext/upb-generated/envoy/api/v2/cluster/outlier_detection.upb.h",
 | 
	
		
			
				|  |  |          "src/core/ext/upb-generated/envoy/api/v2/discovery.upb.h",
 | 
	
		
			
				|  |  |          "src/core/ext/upb-generated/envoy/api/v2/eds.upb.h",
 | 
	
		
			
				|  |  |          "src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint.upb.h",
 | 
	
		
			
				|  |  | +        "src/core/ext/upb-generated/envoy/api/v2/endpoint/load_report.upb.h",
 | 
	
		
			
				|  |  |          "src/core/ext/upb-generated/envoy/service/discovery/v2/ads.upb.h",
 | 
	
		
			
				|  |  | +        "src/core/ext/upb-generated/envoy/service/load_stats/v2/lrs.upb.h",
 | 
	
		
			
				|  |  |      ],
 | 
	
		
			
				|  |  |      external_deps = [
 | 
	
		
			
				|  |  |          "upb_lib",
 | 
	
	
		
			
				|  | @@ -2390,7 +2315,6 @@ grpc_cc_library(
 | 
	
		
			
				|  |  |          ":google_api_upb",
 | 
	
		
			
				|  |  |          ":proto_gen_validate_upb",
 | 
	
		
			
				|  |  |      ],
 | 
	
		
			
				|  |  | -    tags = ["no_windows"],
 | 
	
		
			
				|  |  |  )
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  grpc_cc_library(
 | 
	
	
		
			
				|  | @@ -2401,6 +2325,7 @@ grpc_cc_library(
 | 
	
		
			
				|  |  |          "src/core/ext/upb-generated/envoy/api/v2/core/config_source.upb.c",
 | 
	
		
			
				|  |  |          "src/core/ext/upb-generated/envoy/api/v2/core/grpc_service.upb.c",
 | 
	
		
			
				|  |  |          "src/core/ext/upb-generated/envoy/api/v2/core/health_check.upb.c",
 | 
	
		
			
				|  |  | +        "src/core/ext/upb-generated/envoy/api/v2/core/http_uri.upb.c",
 | 
	
		
			
				|  |  |          "src/core/ext/upb-generated/envoy/api/v2/core/protocol.upb.c",
 | 
	
		
			
				|  |  |      ],
 | 
	
		
			
				|  |  |      hdrs = [
 | 
	
	
		
			
				|  | @@ -2409,13 +2334,13 @@ grpc_cc_library(
 | 
	
		
			
				|  |  |          "src/core/ext/upb-generated/envoy/api/v2/core/config_source.upb.h",
 | 
	
		
			
				|  |  |          "src/core/ext/upb-generated/envoy/api/v2/core/grpc_service.upb.h",
 | 
	
		
			
				|  |  |          "src/core/ext/upb-generated/envoy/api/v2/core/health_check.upb.h",
 | 
	
		
			
				|  |  | +        "src/core/ext/upb-generated/envoy/api/v2/core/http_uri.upb.h",
 | 
	
		
			
				|  |  |          "src/core/ext/upb-generated/envoy/api/v2/core/protocol.upb.h",
 | 
	
		
			
				|  |  |      ],
 | 
	
		
			
				|  |  |      external_deps = [
 | 
	
		
			
				|  |  |          "upb_lib",
 | 
	
		
			
				|  |  |      ],
 | 
	
		
			
				|  |  |      language = "c++",
 | 
	
		
			
				|  |  | -    tags = ["no_windows"],
 | 
	
		
			
				|  |  |      deps = [
 | 
	
		
			
				|  |  |          ":envoy_type_upb",
 | 
	
		
			
				|  |  |          ":google_api_upb",
 | 
	
	
		
			
				|  | @@ -2437,7 +2362,6 @@ grpc_cc_library(
 | 
	
		
			
				|  |  |          "upb_lib",
 | 
	
		
			
				|  |  |      ],
 | 
	
		
			
				|  |  |      language = "c++",
 | 
	
		
			
				|  |  | -    tags = ["no_windows"],
 | 
	
		
			
				|  |  |      deps = [
 | 
	
		
			
				|  |  |          ":google_api_upb",
 | 
	
		
			
				|  |  |          ":proto_gen_validate_upb",
 | 
	
	
		
			
				|  | @@ -2458,12 +2382,55 @@ grpc_cc_library(
 | 
	
		
			
				|  |  |          "upb_lib",
 | 
	
		
			
				|  |  |      ],
 | 
	
		
			
				|  |  |      language = "c++",
 | 
	
		
			
				|  |  | -    tags = ["no_windows"],
 | 
	
		
			
				|  |  |      deps = [
 | 
	
		
			
				|  |  |          ":google_api_upb",
 | 
	
		
			
				|  |  |      ],
 | 
	
		
			
				|  |  |  )
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +# Once upb code-gen issue is resolved, replace envoy_orca_upb with this.
 | 
	
		
			
				|  |  | +# grpc_upb_proto_library(
 | 
	
		
			
				|  |  | +#     name = "envoy_orca_upb",
 | 
	
		
			
				|  |  | +#     deps = ["@envoy_api//udpa/data/orca/v1:orca_load_report"]
 | 
	
		
			
				|  |  | +# )
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +grpc_cc_library(
 | 
	
		
			
				|  |  | +    name = "envoy_orca_upb",
 | 
	
		
			
				|  |  | +    srcs = [
 | 
	
		
			
				|  |  | +        "src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.c",
 | 
	
		
			
				|  |  | +    ],
 | 
	
		
			
				|  |  | +    hdrs = [
 | 
	
		
			
				|  |  | +        "src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.h",
 | 
	
		
			
				|  |  | +    ],
 | 
	
		
			
				|  |  | +    external_deps = [
 | 
	
		
			
				|  |  | +        "upb_lib",
 | 
	
		
			
				|  |  | +    ],
 | 
	
		
			
				|  |  | +    language = "c++",
 | 
	
		
			
				|  |  | +    deps = [
 | 
	
		
			
				|  |  | +        ":proto_gen_validate_upb",
 | 
	
		
			
				|  |  | +    ],
 | 
	
		
			
				|  |  | +)
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +# Once upb code-gen issue is resolved, replace grpc_health_upb with this.
 | 
	
		
			
				|  |  | +# grpc_upb_proto_library(
 | 
	
		
			
				|  |  | +#     name = "grpc_health_upb",
 | 
	
		
			
				|  |  | +#     deps = ["//src/proto/grpc/health/v1:health_proto_descriptor"],
 | 
	
		
			
				|  |  | +# )
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +grpc_cc_library(
 | 
	
		
			
				|  |  | +    name = "grpc_health_upb",
 | 
	
		
			
				|  |  | +    srcs = [
 | 
	
		
			
				|  |  | +        "src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.c",
 | 
	
		
			
				|  |  | +    ],
 | 
	
		
			
				|  |  | +    hdrs = [
 | 
	
		
			
				|  |  | +        "src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h",
 | 
	
		
			
				|  |  | +    ],
 | 
	
		
			
				|  |  | +    external_deps = [
 | 
	
		
			
				|  |  | +        "upb_lib",
 | 
	
		
			
				|  |  | +    ],
 | 
	
		
			
				|  |  | +    language = "c++",
 | 
	
		
			
				|  |  | +)
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +# Once upb code-gen issue is resolved, remove this.
 | 
	
		
			
				|  |  |  grpc_cc_library(
 | 
	
		
			
				|  |  |      name = "google_api_upb",
 | 
	
		
			
				|  |  |      srcs = [
 | 
	
	
		
			
				|  | @@ -2494,7 +2461,53 @@ grpc_cc_library(
 | 
	
		
			
				|  |  |          "upb_lib",
 | 
	
		
			
				|  |  |      ],
 | 
	
		
			
				|  |  |      language = "c++",
 | 
	
		
			
				|  |  | -    tags = ["no_windows"],
 | 
	
		
			
				|  |  | +)
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +# Once upb code-gen issue is resolved, replace grpc_lb_upb with this.
 | 
	
		
			
				|  |  | +# grpc_upb_proto_library(
 | 
	
		
			
				|  |  | +#     name = "grpc_lb_upb",
 | 
	
		
			
				|  |  | +#     deps = ["//src/proto/grpc/lb/v1:load_balancer_proto_descriptor"],
 | 
	
		
			
				|  |  | +# )
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +grpc_cc_library(
 | 
	
		
			
				|  |  | +    name = "grpc_lb_upb",
 | 
	
		
			
				|  |  | +    srcs = [
 | 
	
		
			
				|  |  | +        "src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c",
 | 
	
		
			
				|  |  | +    ],
 | 
	
		
			
				|  |  | +    hdrs = [
 | 
	
		
			
				|  |  | +        "src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h",
 | 
	
		
			
				|  |  | +    ],
 | 
	
		
			
				|  |  | +    external_deps = [
 | 
	
		
			
				|  |  | +        "upb_lib",
 | 
	
		
			
				|  |  | +    ],
 | 
	
		
			
				|  |  | +    language = "c++",
 | 
	
		
			
				|  |  | +    deps = [
 | 
	
		
			
				|  |  | +        "google_api_upb",
 | 
	
		
			
				|  |  | +    ],
 | 
	
		
			
				|  |  | +)
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +# Once upb code-gen issue is resolved, replace alts_upb with this.
 | 
	
		
			
				|  |  | +# grpc_upb_proto_library(
 | 
	
		
			
				|  |  | +#     name = "alts_upb",
 | 
	
		
			
				|  |  | +#     deps = ["//src/proto/grpc/gcp:alts_handshaker_proto"],
 | 
	
		
			
				|  |  | +# )
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +grpc_cc_library(
 | 
	
		
			
				|  |  | +    name = "alts_upb",
 | 
	
		
			
				|  |  | +    srcs = [
 | 
	
		
			
				|  |  | +        "src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.c",
 | 
	
		
			
				|  |  | +        "src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c",
 | 
	
		
			
				|  |  | +        "src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.c",
 | 
	
		
			
				|  |  | +    ],
 | 
	
		
			
				|  |  | +    hdrs = [
 | 
	
		
			
				|  |  | +        "src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h",
 | 
	
		
			
				|  |  | +        "src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h",
 | 
	
		
			
				|  |  | +        "src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h",
 | 
	
		
			
				|  |  | +    ],
 | 
	
		
			
				|  |  | +    external_deps = [
 | 
	
		
			
				|  |  | +        "upb_lib",
 | 
	
		
			
				|  |  | +    ],
 | 
	
		
			
				|  |  | +    language = "c++",
 | 
	
		
			
				|  |  |  )
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  grpc_generate_one_off_targets()
 |