Index: components/data_reduction_proxy/core/common/BUILD.gn |
diff --git a/components/data_reduction_proxy/core/common/BUILD.gn b/components/data_reduction_proxy/core/common/BUILD.gn |
index a28e6d0216be9dc1e4d08a087d8850978c86fe0b..6976004e9091b52c9a6ef574cc6566e8a63aa71e 100644 |
--- a/components/data_reduction_proxy/core/common/BUILD.gn |
+++ b/components/data_reduction_proxy/core/common/BUILD.gn |
@@ -7,6 +7,8 @@ import("//chrome/version.gni") |
static_library("common") { |
sources = [ |
"data_reduction_proxy_bypass_type_list.h", |
+ "data_reduction_proxy_client_config_parser.cc", |
+ "data_reduction_proxy_client_config_parser.h", |
"data_reduction_proxy_config_values.h", |
"data_reduction_proxy_event_store.cc", |
"data_reduction_proxy_event_store.h", |
@@ -25,6 +27,7 @@ static_library("common") { |
] |
deps = [ |
"//base", |
+ "//components/data_reduction_proxy/proto:data_reduction_proxy_proto", |
"//net", |
"//url", |
] |
@@ -54,6 +57,7 @@ source_set("test_support") { |
source_set("unit_tests") { |
testonly = true |
sources = [ |
+ "data_reduction_proxy_client_config_parser_unittest.cc", |
"data_reduction_proxy_event_store_unittest.cc", |
"data_reduction_proxy_headers_unittest.cc", |
"data_reduction_proxy_params_unittest.cc", |
@@ -64,6 +68,7 @@ source_set("unit_tests") { |
":test_support", |
"//base", |
"//base/test:test_support", |
+ "//components/data_reduction_proxy/proto:data_reduction_proxy_proto", |
"//net:test_support", |
"//testing/gtest", |
] |