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

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

Issue 1547273003: Set trusted SPDY proxy dynamically on per-profile basis (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added net/base/test_proxy_delegate.{h,cc} Created 4 years, 10 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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 source_set("unit_tests") { 130 source_set("unit_tests") {
131 testonly = true 131 testonly = true
132 sources = [ 132 sources = [
133 "data_reduction_proxy_bypass_protocol_unittest.cc", 133 "data_reduction_proxy_bypass_protocol_unittest.cc",
134 "data_reduction_proxy_bypass_stats_unittest.cc", 134 "data_reduction_proxy_bypass_stats_unittest.cc",
135 "data_reduction_proxy_compression_stats_unittest.cc", 135 "data_reduction_proxy_compression_stats_unittest.cc",
136 "data_reduction_proxy_config_retrieval_params_unittest.cc", 136 "data_reduction_proxy_config_retrieval_params_unittest.cc",
137 "data_reduction_proxy_config_service_client_unittest.cc", 137 "data_reduction_proxy_config_service_client_unittest.cc",
138 "data_reduction_proxy_config_unittest.cc", 138 "data_reduction_proxy_config_unittest.cc",
139 "data_reduction_proxy_configurator_unittest.cc", 139 "data_reduction_proxy_configurator_unittest.cc",
140 "data_reduction_proxy_delegate_unittest.cc",
140 "data_reduction_proxy_experiments_stats_unittest.cc", 141 "data_reduction_proxy_experiments_stats_unittest.cc",
141 "data_reduction_proxy_interceptor_unittest.cc", 142 "data_reduction_proxy_interceptor_unittest.cc",
142 "data_reduction_proxy_io_data_unittest.cc", 143 "data_reduction_proxy_io_data_unittest.cc",
143 "data_reduction_proxy_metrics_unittest.cc", 144 "data_reduction_proxy_metrics_unittest.cc",
144 "data_reduction_proxy_mutable_config_values_unittest.cc", 145 "data_reduction_proxy_mutable_config_values_unittest.cc",
145 "data_reduction_proxy_network_delegate_unittest.cc", 146 "data_reduction_proxy_network_delegate_unittest.cc",
146 "data_reduction_proxy_prefs_unittest.cc", 147 "data_reduction_proxy_prefs_unittest.cc",
147 "data_reduction_proxy_request_options_unittest.cc", 148 "data_reduction_proxy_request_options_unittest.cc",
148 "data_reduction_proxy_settings_unittest.cc", 149 "data_reduction_proxy_settings_unittest.cc",
149 "data_reduction_proxy_tamper_detection_unittest.cc", 150 "data_reduction_proxy_tamper_detection_unittest.cc",
150 "data_usage_store_unittest.cc", 151 "data_usage_store_unittest.cc",
151 ] 152 ]
152 153
153 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 154 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
154 155
155 deps = [ 156 deps = [
156 ":browser", 157 ":browser",
157 ":test_support", 158 ":test_support",
158 "//base", 159 "//base",
159 "//base/test:test_support", 160 "//base/test:test_support",
160 "//components/data_reduction_proxy/core/common:test_support", 161 "//components/data_reduction_proxy/core/common:test_support",
161 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto", 162 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto",
162 "//components/prefs:test_support", 163 "//components/prefs:test_support",
163 "//components/variations", 164 "//components/variations",
164 "//net:test_support", 165 "//net:test_support",
165 "//testing/gmock", 166 "//testing/gmock",
166 "//testing/gtest", 167 "//testing/gtest",
167 ] 168 ]
168 } 169 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698