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

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

Issue 2103223002: Adding version info to the client config request (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removing leftover headers Created 4 years, 6 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/browser/BUILD.gn
diff --git a/components/data_reduction_proxy/core/browser/BUILD.gn b/components/data_reduction_proxy/core/browser/BUILD.gn
index 2b51887d6a4ab117000df81c8fe5a0d6dd0c5a10..6ec49cc01ba224b3b0201995b76b08c57342f81c 100644
--- a/components/data_reduction_proxy/core/browser/BUILD.gn
+++ b/components/data_reduction_proxy/core/browser/BUILD.gn
@@ -54,20 +54,21 @@ if (is_android) {
source_set("browser_small") {
sources = browser_sources
deps = [
"//base",
"//components/data_reduction_proxy/core/common",
"//components/data_reduction_proxy/proto:data_reduction_proxy_proto",
"//components/pref_registry",
"//components/prefs",
"//components/variations",
+ "//components/version_info",
tbansal1 2016/06/28 21:32:15 Similar change in gyp files?
RyanSturm 2016/06/28 22:22:13 Acknowledged.
"//crypto",
"//google_apis",
"//net:net",
"//url:url",
]
}
}
source_set("browser") {
sources = browser_sources
@@ -76,20 +77,21 @@ source_set("browser") {
"data_store_impl.h",
]
deps = [
"//base",
"//components/data_reduction_proxy/core/common",
"//components/data_reduction_proxy/proto:data_reduction_proxy_proto",
"//components/pref_registry",
"//components/prefs",
"//components/variations",
+ "//components/version_info",
"//crypto",
"//google_apis",
"//net",
"//third_party/leveldatabase",
"//url",
]
defines = [ "USE_GOOGLE_API_KEYS" ]
if (!is_ios) {
defines += [ "USE_GOOGLE_API_KEYS_FOR_AUTH_KEY" ]

Powered by Google App Engine
This is Rietveld 408576698