aboutsummaryrefslogtreecommitdiffhomepage
path: root/BUILD
diff options
context:
space:
mode:
authorGravatar David Garcia Quintas <dgq@google.com>2018-03-13 08:36:16 -0700
committerGravatar David Garcia Quintas <dgq@google.com>2018-03-13 12:37:11 -0700
commitaa843f2bfc83b588a645d5edc9300b0e1d353f93 (patch)
treebfc625c48b9ddfa55141e1816c7f13a101917aaf /BUILD
parent7b84b3d519b0fb678876af10c0bc2206020dbe91 (diff)
Testing making the authority filter a plugin, for cronet
Diffstat (limited to 'BUILD')
-rw-r--r--BUILD16
1 files changed, 16 insertions, 0 deletions
diff --git a/BUILD b/BUILD
index 49f45f8218..75aebb2462 100644
--- a/BUILD
+++ b/BUILD
@@ -966,6 +966,7 @@ grpc_cc_library(
# standard plugins
"census",
"grpc_deadline_filter",
+ "grpc_client_authority_filter",
"grpc_lb_policy_pick_first",
"grpc_lb_policy_round_robin",
"grpc_server_load_reporting",
@@ -1036,6 +1037,7 @@ grpc_cc_library(
deps = [
"gpr_base",
"grpc_base",
+ "grpc_client_authority_filter",
"grpc_deadline_filter",
"inlined_vector",
"orphanable",
@@ -1073,6 +1075,20 @@ grpc_cc_library(
)
grpc_cc_library(
+ name = "grpc_client_authority_filter",
+ srcs = [
+ "src/core/lib/channel/client_authority_filter.cc",
+ ],
+ hdrs = [
+ "src/core/lib/channel/client_authority_filter.h",
+ ],
+ language = "c++",
+ deps = [
+ "grpc_base",
+ ],
+)
+
+grpc_cc_library(
name = "grpc_message_size_filter",
srcs = [
"src/core/ext/filters/message_size/message_size_filter.cc",