Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1510)

Unified Diff: components/data_reduction_proxy/core/common/BUILD.gn

Issue 1017853003: Add ClientConfig proto, and JSON generation/parsing. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Tweak test values Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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",
]

Powered by Google App Engine
This is Rietveld 408576698