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

Side by Side 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, 5 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 unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 browser_sources = [ 5 browser_sources = [
6 "data_reduction_proxy_bypass_protocol.cc", 6 "data_reduction_proxy_bypass_protocol.cc",
7 "data_reduction_proxy_bypass_protocol.h", 7 "data_reduction_proxy_bypass_protocol.h",
8 "data_reduction_proxy_bypass_stats.cc", 8 "data_reduction_proxy_bypass_stats.cc",
9 "data_reduction_proxy_bypass_stats.h", 9 "data_reduction_proxy_bypass_stats.h",
10 "data_reduction_proxy_compression_stats.cc", 10 "data_reduction_proxy_compression_stats.cc",
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 source_set("browser_small") { 54 source_set("browser_small") {
55 sources = browser_sources 55 sources = browser_sources
56 56
57 deps = [ 57 deps = [
58 "//base", 58 "//base",
59 "//components/data_reduction_proxy/core/common", 59 "//components/data_reduction_proxy/core/common",
60 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto", 60 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto",
61 "//components/pref_registry", 61 "//components/pref_registry",
62 "//components/prefs", 62 "//components/prefs",
63 "//components/variations", 63 "//components/variations",
64 "//components/version_info",
tbansal1 2016/06/28 21:32:15 Similar change in gyp files?
RyanSturm 2016/06/28 22:22:13 Acknowledged.
64 "//crypto", 65 "//crypto",
65 "//google_apis", 66 "//google_apis",
66 "//net:net", 67 "//net:net",
67 "//url:url", 68 "//url:url",
68 ] 69 ]
69 } 70 }
70 } 71 }
71 72
72 source_set("browser") { 73 source_set("browser") {
73 sources = browser_sources 74 sources = browser_sources
74 sources += [ 75 sources += [
75 "data_store_impl.cc", 76 "data_store_impl.cc",
76 "data_store_impl.h", 77 "data_store_impl.h",
77 ] 78 ]
78 79
79 deps = [ 80 deps = [
80 "//base", 81 "//base",
81 "//components/data_reduction_proxy/core/common", 82 "//components/data_reduction_proxy/core/common",
82 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto", 83 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto",
83 "//components/pref_registry", 84 "//components/pref_registry",
84 "//components/prefs", 85 "//components/prefs",
85 "//components/variations", 86 "//components/variations",
87 "//components/version_info",
86 "//crypto", 88 "//crypto",
87 "//google_apis", 89 "//google_apis",
88 "//net", 90 "//net",
89 "//third_party/leveldatabase", 91 "//third_party/leveldatabase",
90 "//url", 92 "//url",
91 ] 93 ]
92 94
93 defines = [ "USE_GOOGLE_API_KEYS" ] 95 defines = [ "USE_GOOGLE_API_KEYS" ]
94 if (!is_ios) { 96 if (!is_ios) {
95 defines += [ "USE_GOOGLE_API_KEYS_FOR_AUTH_KEY" ] 97 defines += [ "USE_GOOGLE_API_KEYS_FOR_AUTH_KEY" ]
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 "//base/test:test_support", 179 "//base/test:test_support",
178 "//components/data_reduction_proxy/core/common:test_support", 180 "//components/data_reduction_proxy/core/common:test_support",
179 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto", 181 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto",
180 "//components/prefs:test_support", 182 "//components/prefs:test_support",
181 "//components/variations", 183 "//components/variations",
182 "//net:test_support", 184 "//net:test_support",
183 "//testing/gmock", 185 "//testing/gmock",
184 "//testing/gtest", 186 "//testing/gtest",
185 ] 187 ]
186 } 188 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698