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

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

Issue 792803007: Make Data Reduction Proxy a best effort proxy (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updated tests Created 5 years, 11 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_auth_request_handler.cc", 7 "data_reduction_proxy_auth_request_handler.cc",
8 "data_reduction_proxy_auth_request_handler.h", 8 "data_reduction_proxy_auth_request_handler.h",
9 "data_reduction_proxy_config_service.cc", 9 "data_reduction_proxy_configurator.cc",
10 "data_reduction_proxy_config_service.h",
11 "data_reduction_proxy_configurator.h", 10 "data_reduction_proxy_configurator.h",
12 "data_reduction_proxy_delegate.cc", 11 "data_reduction_proxy_delegate.cc",
13 "data_reduction_proxy_delegate.h", 12 "data_reduction_proxy_delegate.h",
14 "data_reduction_proxy_interceptor.cc", 13 "data_reduction_proxy_interceptor.cc",
15 "data_reduction_proxy_interceptor.h", 14 "data_reduction_proxy_interceptor.h",
16 "data_reduction_proxy_metrics.cc", 15 "data_reduction_proxy_metrics.cc",
17 "data_reduction_proxy_metrics.h", 16 "data_reduction_proxy_metrics.h",
18 "data_reduction_proxy_network_delegate.cc", 17 "data_reduction_proxy_network_delegate.cc",
19 "data_reduction_proxy_network_delegate.h", 18 "data_reduction_proxy_network_delegate.h",
20 "data_reduction_proxy_prefs.cc", 19 "data_reduction_proxy_prefs.cc",
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 "//net:test_support", 63 "//net:test_support",
65 "//testing/gmock", 64 "//testing/gmock",
66 "//testing/gtest", 65 "//testing/gtest",
67 ] 66 ]
68 } 67 }
69 68
70 source_set("unit_tests") { 69 source_set("unit_tests") {
71 testonly = true 70 testonly = true
72 sources = [ 71 sources = [
73 "data_reduction_proxy_auth_request_handler_unittest.cc", 72 "data_reduction_proxy_auth_request_handler_unittest.cc",
74 "data_reduction_proxy_config_service_unittest.cc", 73 "data_reduction_proxy_configurator_unittest.cc",
75 "data_reduction_proxy_interceptor_unittest.cc", 74 "data_reduction_proxy_interceptor_unittest.cc",
76 "data_reduction_proxy_metrics_unittest.cc", 75 "data_reduction_proxy_metrics_unittest.cc",
77 "data_reduction_proxy_network_delegate_unittest.cc", 76 "data_reduction_proxy_network_delegate_unittest.cc",
78 "data_reduction_proxy_prefs_unittest.cc", 77 "data_reduction_proxy_prefs_unittest.cc",
79 "data_reduction_proxy_protocol_unittest.cc", 78 "data_reduction_proxy_protocol_unittest.cc",
80 "data_reduction_proxy_settings_unittest.cc", 79 "data_reduction_proxy_settings_unittest.cc",
81 "data_reduction_proxy_usage_stats_unittest.cc", 80 "data_reduction_proxy_usage_stats_unittest.cc",
82 ] 81 ]
83 82
84 deps = [ 83 deps = [
85 ":browser", 84 ":browser",
86 ":test_support", 85 ":test_support",
87 "//base", 86 "//base",
88 "//base:prefs_test_support", 87 "//base:prefs_test_support",
89 "//base/test:test_support", 88 "//base/test:test_support",
90 "//components/data_reduction_proxy/core/common:test_support", 89 "//components/data_reduction_proxy/core/common:test_support",
91 "//net:test_support", 90 "//net:test_support",
92 "//testing/gmock", 91 "//testing/gmock",
93 "//testing/gtest", 92 "//testing/gtest",
94 ] 93 ]
95 } 94 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698