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

Side by Side Diff: components/data_reduction_proxy.gypi

Issue 1173343009: LevelDB storage for data reduction proxy to store data usage stats. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comments Created 5 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 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 5
6 { 6 {
7 'variables' : 7 'variables' :
8 { 8 {
9 'data_reduction_proxy_core_browser_sources' : [ 9 'data_reduction_proxy_core_browser_sources' : [
10 # Note: sources list duplicated in GN build. 10 # Note: sources list duplicated in GN build.
(...skipping 28 matching lines...) Expand all
39 'data_reduction_proxy/core/browser/data_reduction_proxy_network_delegate .h', 39 'data_reduction_proxy/core/browser/data_reduction_proxy_network_delegate .h',
40 'data_reduction_proxy/core/browser/data_reduction_proxy_prefs.cc', 40 'data_reduction_proxy/core/browser/data_reduction_proxy_prefs.cc',
41 'data_reduction_proxy/core/browser/data_reduction_proxy_prefs.h', 41 'data_reduction_proxy/core/browser/data_reduction_proxy_prefs.h',
42 'data_reduction_proxy/core/browser/data_reduction_proxy_request_options. cc', 42 'data_reduction_proxy/core/browser/data_reduction_proxy_request_options. cc',
43 'data_reduction_proxy/core/browser/data_reduction_proxy_request_options. h', 43 'data_reduction_proxy/core/browser/data_reduction_proxy_request_options. h',
44 'data_reduction_proxy/core/browser/data_reduction_proxy_service.cc', 44 'data_reduction_proxy/core/browser/data_reduction_proxy_service.cc',
45 'data_reduction_proxy/core/browser/data_reduction_proxy_service.h', 45 'data_reduction_proxy/core/browser/data_reduction_proxy_service.h',
46 'data_reduction_proxy/core/browser/data_reduction_proxy_service_observer .h', 46 'data_reduction_proxy/core/browser/data_reduction_proxy_service_observer .h',
47 'data_reduction_proxy/core/browser/data_reduction_proxy_settings.cc', 47 'data_reduction_proxy/core/browser/data_reduction_proxy_settings.cc',
48 'data_reduction_proxy/core/browser/data_reduction_proxy_settings.h', 48 'data_reduction_proxy/core/browser/data_reduction_proxy_settings.h',
49 'data_reduction_proxy/core/browser/data_reduction_proxy_store.cc',
50 'data_reduction_proxy/core/browser/data_reduction_proxy_store.h',
49 'data_reduction_proxy/core/browser/data_reduction_proxy_tamper_detection .cc', 51 'data_reduction_proxy/core/browser/data_reduction_proxy_tamper_detection .cc',
50 'data_reduction_proxy/core/browser/data_reduction_proxy_tamper_detection .h', 52 'data_reduction_proxy/core/browser/data_reduction_proxy_tamper_detection .h',
53 'data_reduction_proxy/core/browser/data_usage_storage_helper.cc',
54 'data_reduction_proxy/core/browser/data_usage_storage_helper.h',
51 ], 55 ],
52 'data_reduction_proxy_core_browser_deps' : [ 56 'data_reduction_proxy_core_browser_deps' : [
53 'data_reduction_proxy_version_header', 57 'data_reduction_proxy_version_header',
54 '../base/base.gyp:base', 58 '../base/base.gyp:base',
55 '../crypto/crypto.gyp:crypto', 59 '../crypto/crypto.gyp:crypto',
56 'pref_registry', 60 'pref_registry',
57 ], 61 ],
58 'data_reduction_proxy_core_common_sources' : [ 62 'data_reduction_proxy_core_common_sources' : [
59 # Note: sources list duplicated in GN build. 63 # Note: sources list duplicated in GN build.
60 'data_reduction_proxy/core/common/data_reduction_proxy_bypass_action_lis t.h', 64 'data_reduction_proxy/core/common/data_reduction_proxy_bypass_action_lis t.h',
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 '../google_apis/google_apis.gyp:google_apis', 192 '../google_apis/google_apis.gyp:google_apis',
189 ] 193 ]
190 }], 194 }],
191 ], 195 ],
192 'dependencies': [ 196 'dependencies': [
193 '<@(data_reduction_proxy_core_browser_deps)', 197 '<@(data_reduction_proxy_core_browser_deps)',
194 '../net/net.gyp:net', 198 '../net/net.gyp:net',
195 '../url/url.gyp:url_lib', 199 '../url/url.gyp:url_lib',
196 'data_reduction_proxy_core_common', 200 'data_reduction_proxy_core_common',
197 'data_reduction_proxy_proto', 201 'data_reduction_proxy_proto',
202 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
198 ], 203 ],
199 'include_dirs': [ 204 'include_dirs': [
200 '..', 205 '..',
201 ], 206 ],
202 'sources': [ 207 'sources': [
203 '<@(data_reduction_proxy_core_browser_sources)' 208 '<@(data_reduction_proxy_core_browser_sources)',
209 'data_reduction_proxy/core/browser/data_reduction_proxy_store_impl.cc',
210 'data_reduction_proxy/core/browser/data_reduction_proxy_store_impl.h',
204 ], 211 ],
205 }, 212 },
206 { 213 {
207 # GN version: //components/data_reduction_proxy/core/common 214 # GN version: //components/data_reduction_proxy/core/common
208 'target_name': 'data_reduction_proxy_core_common', 215 'target_name': 'data_reduction_proxy_core_common',
209 'type': 'static_library', 216 'type': 'static_library',
210 'dependencies': [ 217 'dependencies': [
211 '../base/base.gyp:base', 218 '../base/base.gyp:base',
212 '../url/url.gyp:url_lib', 219 '../url/url.gyp:url_lib',
213 'data_reduction_proxy_proto', 220 'data_reduction_proxy_proto',
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 # GN version: //components/data_reduction_proxy/proto 267 # GN version: //components/data_reduction_proxy/proto
261 'target_name': 'data_reduction_proxy_proto', 268 'target_name': 'data_reduction_proxy_proto',
262 'type': 'static_library', 269 'type': 'static_library',
263 'dependencies': [ 270 'dependencies': [
264 ], 271 ],
265 'include_dirs': [ 272 'include_dirs': [
266 ], 273 ],
267 'sources': [ 274 'sources': [
268 # Note: sources list duplicated in GN build. 275 # Note: sources list duplicated in GN build.
269 'data_reduction_proxy/proto/client_config.proto', 276 'data_reduction_proxy/proto/client_config.proto',
277 'data_reduction_proxy/proto/store.proto',
270 ], 278 ],
271 'variables': { 279 'variables': {
272 'proto_in_dir': 'data_reduction_proxy/proto', 280 'proto_in_dir': 'data_reduction_proxy/proto',
273 'proto_out_dir': 'components/data_reduction_proxy/proto', 281 'proto_out_dir': 'components/data_reduction_proxy/proto',
274 }, 282 },
275 'includes': [ '../build/protoc.gypi' ], 283 'includes': [ '../build/protoc.gypi' ],
276 }, 284 },
277 { 285 {
278 'target_name': 'data_reduction_proxy_version_header', 286 'target_name': 'data_reduction_proxy_version_header',
279 'type': 'none', 287 'type': 'none',
(...skipping 21 matching lines...) Expand all
301 '<@(_outputs)', 309 '<@(_outputs)',
302 ], 310 ],
303 'includes': [ 311 'includes': [
304 '../build/util/version.gypi', 312 '../build/util/version.gypi',
305 ], 313 ],
306 }, 314 },
307 ], 315 ],
308 }, 316 },
309 ], 317 ],
310 } 318 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698