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

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

Issue 1345523005: Added command line flag to override list of proxies from Data Saver API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased on master Created 5 years, 2 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 source_set("browser") { 5 source_set("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",
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 "data_reduction_proxy_bypass_stats_unittest.cc", 110 "data_reduction_proxy_bypass_stats_unittest.cc",
111 "data_reduction_proxy_compression_stats_unittest.cc", 111 "data_reduction_proxy_compression_stats_unittest.cc",
112 "data_reduction_proxy_config_retrieval_params_unittest.cc", 112 "data_reduction_proxy_config_retrieval_params_unittest.cc",
113 "data_reduction_proxy_config_service_client_unittest.cc", 113 "data_reduction_proxy_config_service_client_unittest.cc",
114 "data_reduction_proxy_config_unittest.cc", 114 "data_reduction_proxy_config_unittest.cc",
115 "data_reduction_proxy_configurator_unittest.cc", 115 "data_reduction_proxy_configurator_unittest.cc",
116 "data_reduction_proxy_experiments_stats_unittest.cc", 116 "data_reduction_proxy_experiments_stats_unittest.cc",
117 "data_reduction_proxy_interceptor_unittest.cc", 117 "data_reduction_proxy_interceptor_unittest.cc",
118 "data_reduction_proxy_io_data_unittest.cc", 118 "data_reduction_proxy_io_data_unittest.cc",
119 "data_reduction_proxy_metrics_unittest.cc", 119 "data_reduction_proxy_metrics_unittest.cc",
120 "data_reduction_proxy_mutable_config_values_unittest.cc",
120 "data_reduction_proxy_network_delegate_unittest.cc", 121 "data_reduction_proxy_network_delegate_unittest.cc",
121 "data_reduction_proxy_prefs_unittest.cc", 122 "data_reduction_proxy_prefs_unittest.cc",
122 "data_reduction_proxy_request_options_unittest.cc", 123 "data_reduction_proxy_request_options_unittest.cc",
123 "data_reduction_proxy_settings_unittest.cc", 124 "data_reduction_proxy_settings_unittest.cc",
124 "data_reduction_proxy_tamper_detection_unittest.cc", 125 "data_reduction_proxy_tamper_detection_unittest.cc",
125 "data_usage_store_unittest.cc", 126 "data_usage_store_unittest.cc",
126 ] 127 ]
127 128
128 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 129 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
129 130
130 deps = [ 131 deps = [
131 ":browser", 132 ":browser",
132 ":test_support", 133 ":test_support",
133 "//base", 134 "//base",
134 "//base:prefs_test_support", 135 "//base:prefs_test_support",
135 "//base/test:test_support", 136 "//base/test:test_support",
136 "//components/data_reduction_proxy/core/common:test_support", 137 "//components/data_reduction_proxy/core/common:test_support",
137 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto", 138 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto",
138 "//net:test_support", 139 "//net:test_support",
139 "//testing/gmock", 140 "//testing/gmock",
140 "//testing/gtest", 141 "//testing/gtest",
141 ] 142 ]
142 } 143 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698