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

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: rebase Created 5 years, 9 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_configurator.cc", 13 "data_reduction_proxy_configurator.cc",
12 "data_reduction_proxy_configurator.h", 14 "data_reduction_proxy_configurator.h",
13 "data_reduction_proxy_debug_ui_service.h", 15 "data_reduction_proxy_debug_ui_service.h",
14 "data_reduction_proxy_delegate.cc", 16 "data_reduction_proxy_delegate.cc",
15 "data_reduction_proxy_delegate.h", 17 "data_reduction_proxy_delegate.h",
16 "data_reduction_proxy_interceptor.cc", 18 "data_reduction_proxy_interceptor.cc",
17 "data_reduction_proxy_interceptor.h", 19 "data_reduction_proxy_interceptor.h",
18 "data_reduction_proxy_io_data.cc", 20 "data_reduction_proxy_io_data.cc",
19 "data_reduction_proxy_io_data.h", 21 "data_reduction_proxy_io_data.h",
20 "data_reduction_proxy_metrics.cc", 22 "data_reduction_proxy_metrics.cc",
21 "data_reduction_proxy_metrics.h", 23 "data_reduction_proxy_metrics.h",
22 "data_reduction_proxy_network_delegate.cc", 24 "data_reduction_proxy_network_delegate.cc",
23 "data_reduction_proxy_network_delegate.h", 25 "data_reduction_proxy_network_delegate.h",
24 "data_reduction_proxy_prefs.cc", 26 "data_reduction_proxy_prefs.cc",
25 "data_reduction_proxy_prefs.h", 27 "data_reduction_proxy_prefs.h",
26 "data_reduction_proxy_request_options.cc", 28 "data_reduction_proxy_request_options.cc",
27 "data_reduction_proxy_request_options.h", 29 "data_reduction_proxy_request_options.h",
28 "data_reduction_proxy_service.cc", 30 "data_reduction_proxy_service.cc",
29 "data_reduction_proxy_service.h", 31 "data_reduction_proxy_service.h",
30 "data_reduction_proxy_settings.cc", 32 "data_reduction_proxy_settings.cc",
31 "data_reduction_proxy_settings.h", 33 "data_reduction_proxy_settings.h",
32 "data_reduction_proxy_statistics_prefs.cc", 34 "data_reduction_proxy_statistics_prefs.cc",
33 "data_reduction_proxy_statistics_prefs.h", 35 "data_reduction_proxy_statistics_prefs.h",
34 "data_reduction_proxy_tamper_detection.cc", 36 "data_reduction_proxy_tamper_detection.cc",
35 "data_reduction_proxy_tamper_detection.h", 37 "data_reduction_proxy_tamper_detection.h",
36 "data_reduction_proxy_usage_stats.cc",
37 "data_reduction_proxy_usage_stats.h",
38 ] 38 ]
39 39
40 deps = [ 40 deps = [
41 "//base", 41 "//base",
42 "//base:prefs", 42 "//base:prefs",
43 "//components/data_reduction_proxy/core/common", 43 "//components/data_reduction_proxy/core/common",
44 "//components/pref_registry", 44 "//components/pref_registry",
45 "//crypto", 45 "//crypto",
46 "//net", 46 "//net",
47 "//url", 47 "//url",
(...skipping 30 matching lines...) Expand all
78 "//net:test_support", 78 "//net:test_support",
79 "//testing/gmock", 79 "//testing/gmock",
80 "//testing/gtest", 80 "//testing/gtest",
81 ] 81 ]
82 } 82 }
83 83
84 source_set("unit_tests") { 84 source_set("unit_tests") {
85 testonly = true 85 testonly = true
86 sources = [ 86 sources = [
87 "data_reduction_proxy_bypass_protocol_unittest.cc", 87 "data_reduction_proxy_bypass_protocol_unittest.cc",
88 "data_reduction_proxy_bypass_stats_unittest.cc",
88 "data_reduction_proxy_config_unittest.cc", 89 "data_reduction_proxy_config_unittest.cc",
89 "data_reduction_proxy_configurator_unittest.cc", 90 "data_reduction_proxy_configurator_unittest.cc",
90 "data_reduction_proxy_interceptor_unittest.cc", 91 "data_reduction_proxy_interceptor_unittest.cc",
91 "data_reduction_proxy_metrics_unittest.cc", 92 "data_reduction_proxy_metrics_unittest.cc",
92 "data_reduction_proxy_network_delegate_unittest.cc", 93 "data_reduction_proxy_network_delegate_unittest.cc",
93 "data_reduction_proxy_prefs_unittest.cc", 94 "data_reduction_proxy_prefs_unittest.cc",
94 "data_reduction_proxy_request_options_unittest.cc", 95 "data_reduction_proxy_request_options_unittest.cc",
95 "data_reduction_proxy_settings_unittest.cc", 96 "data_reduction_proxy_settings_unittest.cc",
96 "data_reduction_proxy_usage_stats_unittest.cc",
97 ] 97 ]
98 98
99 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 99 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
100 100
101 deps = [ 101 deps = [
102 ":browser", 102 ":browser",
103 ":test_support", 103 ":test_support",
104 "//base", 104 "//base",
105 "//base:prefs_test_support", 105 "//base:prefs_test_support",
106 "//base/test:test_support", 106 "//base/test:test_support",
107 "//components/data_reduction_proxy/core/common:test_support", 107 "//components/data_reduction_proxy/core/common:test_support",
108 "//net:test_support", 108 "//net:test_support",
109 "//testing/gmock", 109 "//testing/gmock",
110 "//testing/gtest", 110 "//testing/gtest",
111 ] 111 ]
112 } 112 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698