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

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

Issue 956223002: Rename DataReductionProxyUsageStats to DataReductionProxyBypassStats (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nits 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",
10 "data_reduction_proxy_bypass_stats.h",
9 "data_reduction_proxy_config.cc", 11 "data_reduction_proxy_config.cc",
10 "data_reduction_proxy_config.h", 12 "data_reduction_proxy_config.h",
11 "data_reduction_proxy_config_service_client.cc", 13 "data_reduction_proxy_config_service_client.cc",
12 "data_reduction_proxy_config_service_client.h", 14 "data_reduction_proxy_config_service_client.h",
13 "data_reduction_proxy_configurator.cc", 15 "data_reduction_proxy_configurator.cc",
14 "data_reduction_proxy_configurator.h", 16 "data_reduction_proxy_configurator.h",
15 "data_reduction_proxy_debug_ui_service.h", 17 "data_reduction_proxy_debug_ui_service.h",
16 "data_reduction_proxy_delegate.cc", 18 "data_reduction_proxy_delegate.cc",
17 "data_reduction_proxy_delegate.h", 19 "data_reduction_proxy_delegate.h",
18 "data_reduction_proxy_interceptor.cc", 20 "data_reduction_proxy_interceptor.cc",
(...skipping 11 matching lines...) Expand all
30 "data_reduction_proxy_request_options.cc", 32 "data_reduction_proxy_request_options.cc",
31 "data_reduction_proxy_request_options.h", 33 "data_reduction_proxy_request_options.h",
32 "data_reduction_proxy_service.cc", 34 "data_reduction_proxy_service.cc",
33 "data_reduction_proxy_service.h", 35 "data_reduction_proxy_service.h",
34 "data_reduction_proxy_settings.cc", 36 "data_reduction_proxy_settings.cc",
35 "data_reduction_proxy_settings.h", 37 "data_reduction_proxy_settings.h",
36 "data_reduction_proxy_statistics_prefs.cc", 38 "data_reduction_proxy_statistics_prefs.cc",
37 "data_reduction_proxy_statistics_prefs.h", 39 "data_reduction_proxy_statistics_prefs.h",
38 "data_reduction_proxy_tamper_detection.cc", 40 "data_reduction_proxy_tamper_detection.cc",
39 "data_reduction_proxy_tamper_detection.h", 41 "data_reduction_proxy_tamper_detection.h",
40 "data_reduction_proxy_usage_stats.cc",
41 "data_reduction_proxy_usage_stats.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",
50 "//crypto", 50 "//crypto",
51 "//net", 51 "//net",
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 "//net:test_support", 83 "//net:test_support",
84 "//testing/gmock", 84 "//testing/gmock",
85 "//testing/gtest", 85 "//testing/gtest",
86 ] 86 ]
87 } 87 }
88 88
89 source_set("unit_tests") { 89 source_set("unit_tests") {
90 testonly = true 90 testonly = true
91 sources = [ 91 sources = [
92 "data_reduction_proxy_bypass_protocol_unittest.cc", 92 "data_reduction_proxy_bypass_protocol_unittest.cc",
93 "data_reduction_proxy_bypass_stats_unittest.cc",
93 "data_reduction_proxy_config_service_client_unittest.cc", 94 "data_reduction_proxy_config_service_client_unittest.cc",
94 "data_reduction_proxy_config_unittest.cc", 95 "data_reduction_proxy_config_unittest.cc",
95 "data_reduction_proxy_configurator_unittest.cc", 96 "data_reduction_proxy_configurator_unittest.cc",
96 "data_reduction_proxy_interceptor_unittest.cc", 97 "data_reduction_proxy_interceptor_unittest.cc",
97 "data_reduction_proxy_metrics_unittest.cc", 98 "data_reduction_proxy_metrics_unittest.cc",
98 "data_reduction_proxy_network_delegate_unittest.cc", 99 "data_reduction_proxy_network_delegate_unittest.cc",
99 "data_reduction_proxy_prefs_unittest.cc", 100 "data_reduction_proxy_prefs_unittest.cc",
100 "data_reduction_proxy_request_options_unittest.cc", 101 "data_reduction_proxy_request_options_unittest.cc",
101 "data_reduction_proxy_settings_unittest.cc", 102 "data_reduction_proxy_settings_unittest.cc",
102 "data_reduction_proxy_usage_stats_unittest.cc",
103 ] 103 ]
104 104
105 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 105 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
106 106
107 deps = [ 107 deps = [
108 ":browser", 108 ":browser",
109 ":test_support", 109 ":test_support",
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