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

Side by Side Diff: components/data_reduction_proxy/core/browser/BUILD.gn

Issue 949533004: Rename DataReductionProxyStatisticsPrefs to DataReductionProxyCompressionStats (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 8 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 static_library("browser") { 5 static_library("browser") {
6 sources = [ 6 sources = [
7 "data_reduction_proxy_bypass_protocol.cc", 7 "data_reduction_proxy_bypass_protocol.cc",
8 "data_reduction_proxy_bypass_protocol.h", 8 "data_reduction_proxy_bypass_protocol.h",
9 "data_reduction_proxy_bypass_stats.cc", 9 "data_reduction_proxy_bypass_stats.cc",
10 "data_reduction_proxy_bypass_stats.h", 10 "data_reduction_proxy_bypass_stats.h",
11 "data_reduction_proxy_compression_stats.cc",
12 "data_reduction_proxy_compression_stats.h",
11 "data_reduction_proxy_config.cc", 13 "data_reduction_proxy_config.cc",
12 "data_reduction_proxy_config.h", 14 "data_reduction_proxy_config.h",
13 "data_reduction_proxy_config_service_client.cc", 15 "data_reduction_proxy_config_service_client.cc",
14 "data_reduction_proxy_config_service_client.h", 16 "data_reduction_proxy_config_service_client.h",
15 "data_reduction_proxy_configurator.cc", 17 "data_reduction_proxy_configurator.cc",
16 "data_reduction_proxy_configurator.h", 18 "data_reduction_proxy_configurator.h",
17 "data_reduction_proxy_debug_ui_service.h", 19 "data_reduction_proxy_debug_ui_service.h",
18 "data_reduction_proxy_delegate.cc", 20 "data_reduction_proxy_delegate.cc",
19 "data_reduction_proxy_delegate.h", 21 "data_reduction_proxy_delegate.h",
20 "data_reduction_proxy_interceptor.cc", 22 "data_reduction_proxy_interceptor.cc",
21 "data_reduction_proxy_interceptor.h", 23 "data_reduction_proxy_interceptor.h",
22 "data_reduction_proxy_io_data.cc", 24 "data_reduction_proxy_io_data.cc",
23 "data_reduction_proxy_io_data.h", 25 "data_reduction_proxy_io_data.h",
24 "data_reduction_proxy_metrics.cc", 26 "data_reduction_proxy_metrics.cc",
25 "data_reduction_proxy_metrics.h", 27 "data_reduction_proxy_metrics.h",
26 "data_reduction_proxy_mutable_config_values.cc", 28 "data_reduction_proxy_mutable_config_values.cc",
27 "data_reduction_proxy_mutable_config_values.h", 29 "data_reduction_proxy_mutable_config_values.h",
28 "data_reduction_proxy_network_delegate.cc", 30 "data_reduction_proxy_network_delegate.cc",
29 "data_reduction_proxy_network_delegate.h", 31 "data_reduction_proxy_network_delegate.h",
30 "data_reduction_proxy_prefs.cc", 32 "data_reduction_proxy_prefs.cc",
31 "data_reduction_proxy_prefs.h", 33 "data_reduction_proxy_prefs.h",
32 "data_reduction_proxy_request_options.cc", 34 "data_reduction_proxy_request_options.cc",
33 "data_reduction_proxy_request_options.h", 35 "data_reduction_proxy_request_options.h",
34 "data_reduction_proxy_service.cc", 36 "data_reduction_proxy_service.cc",
35 "data_reduction_proxy_service.h", 37 "data_reduction_proxy_service.h",
36 "data_reduction_proxy_settings.cc", 38 "data_reduction_proxy_settings.cc",
37 "data_reduction_proxy_settings.h", 39 "data_reduction_proxy_settings.h",
38 "data_reduction_proxy_statistics_prefs.cc",
39 "data_reduction_proxy_statistics_prefs.h",
40 "data_reduction_proxy_tamper_detection.cc", 40 "data_reduction_proxy_tamper_detection.cc",
41 "data_reduction_proxy_tamper_detection.h", 41 "data_reduction_proxy_tamper_detection.h",
42 ] 42 ]
43 43
44 deps = [ 44 deps = [
45 "//base", 45 "//base",
46 "//base:prefs", 46 "//base:prefs",
47 "//components/data_reduction_proxy/core/common", 47 "//components/data_reduction_proxy/core/common",
48 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto", 48 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto",
49 "//components/pref_registry", 49 "//components/pref_registry",
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 "//base", 110 "//base",
111 "//base:prefs_test_support", 111 "//base:prefs_test_support",
112 "//base/test:test_support", 112 "//base/test:test_support",
113 "//components/data_reduction_proxy/core/common:test_support", 113 "//components/data_reduction_proxy/core/common:test_support",
114 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto", 114 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto",
115 "//net:test_support", 115 "//net:test_support",
116 "//testing/gmock", 116 "//testing/gmock",
117 "//testing/gtest", 117 "//testing/gtest",
118 ] 118 ]
119 } 119 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698