aboutsummaryrefslogtreecommitdiffhomepage
path: root/BUILD
diff options
context:
space:
mode:
authorGravatar ncteisen <ncteisen@gmail.com>2018-10-30 11:39:26 -0700
committerGravatar ncteisen <ncteisen@gmail.com>2018-10-30 11:39:26 -0700
commit3cb8b0b8cba79a7200b5bb60e6e711062dec34bc (patch)
treea0dcc81f68a183c0de3d7b43af5e2e11ed1322c0 /BUILD
parentc13de2eb1e12295cc576abb58d1f8060ff8035b4 (diff)
Move uri_parser to common spot
Diffstat (limited to 'BUILD')
-rw-r--r--BUILD18
1 files changed, 16 insertions, 2 deletions
diff --git a/BUILD b/BUILD
index c8ad45a788..0064b25dc3 100644
--- a/BUILD
+++ b/BUILD
@@ -1053,7 +1053,6 @@ grpc_cc_library(
"src/core/ext/filters/client_channel/retry_throttle.cc",
"src/core/ext/filters/client_channel/subchannel.cc",
"src/core/ext/filters/client_channel/subchannel_index.cc",
- "src/core/ext/filters/client_channel/uri_parser.cc",
],
hdrs = [
"src/core/ext/filters/client_channel/backup_poller.h",
@@ -1077,12 +1076,12 @@ grpc_cc_library(
"src/core/ext/filters/client_channel/retry_throttle.h",
"src/core/ext/filters/client_channel/subchannel.h",
"src/core/ext/filters/client_channel/subchannel_index.h",
- "src/core/ext/filters/client_channel/uri_parser.h",
],
language = "c++",
deps = [
"gpr_base",
"grpc_base",
+ "grpc_uri",
"grpc_client_authority_filter",
"grpc_deadline_filter",
"inlined_vector",
@@ -1094,6 +1093,20 @@ grpc_cc_library(
)
grpc_cc_library(
+ name = "grpc_uri",
+ srcs = [
+ "src/core/ext/uri/uri_parser.cc",
+ ],
+ hdrs = [
+ "src/core/ext/uri/uri_parser.h",
+ ],
+ language = "c++",
+ deps = [
+ "grpc_base",
+ ],
+)
+
+grpc_cc_library(
name = "grpc_max_age_filter",
srcs = [
"src/core/ext/filters/max_age/max_age_filter.cc",
@@ -1693,6 +1706,7 @@ grpc_cc_library(
deps = [
"gpr_base",
"grpc_base",
+ "grpc_uri",
"grpc_http_filters",
"grpc_transport_chttp2_alpn",
],