ashishk-1 commented on a change in pull request #1969: Integration of envoy
fetcher in pagespeed
URL:
https://github.com/apache/incubator-pagespeed-mod/pull/1969#discussion_r356627893
##########
File path: pagespeed/envoy/BUILD
##########
@@ -116,3 +120,116 @@ envoy_cc_test(
"@envoy//test/integration:http_integration_lib",
],
)
+
+filegroup(
+ name = "envoy_fetcher_headers",
+ srcs = [
+ "envoy_url_async_fetcher.h",
+ "envoy_cluster_manager.h",
+ "pagespeed_remote_data_fetcher.h",
+ "envoy_fetch.h",
+ ],
+)
+
+filegroup(
+ name = "envoy_cluster_config",
+ srcs = [
+ "cluster.yaml",
+ ],
+)
+
+cc_library(
+ name = "config",
+ data = [":envoy_cluster_config"],
+)
+
+envoy_cc_library(
+ name = "envoy_fetcher",
+ srcs = [
+ "envoy_url_async_fetcher.cc",
+ "envoy_cluster_manager.cc",
+ "pagespeed_remote_data_fetcher.cc",
+ "envoy_fetch.cc",
+ "header_utils.h",
+ ],
+ hdrs = [
+ ":envoy_fetcher_headers",
+ ],
+ repository = "@envoy",
+ copts = [
+ "-Iexternal/mod_pagespeed/third_party/apr/gen/arch/linux/x64/include/",
Review comment:
Removed dependency of apr. Code pushed
https://github.com/apache/incubator-pagespeed-mod/pull/1969/commits/05e80e98faba31ff5a94f1244b1833fa88a1fae4
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services