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

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

Issue 778463002: Wrapped data reduction proxy initialization into its own class (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@network-delegate
Patch Set: Updated test 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_bypass_protocol.cc", 9 "data_reduction_proxy_bypass_protocol.cc",
10 "data_reduction_proxy_bypass_protocol.h", 10 "data_reduction_proxy_bypass_protocol.h",
11 "data_reduction_proxy_configurator.cc", 11 "data_reduction_proxy_configurator.cc",
12 "data_reduction_proxy_configurator.h", 12 "data_reduction_proxy_configurator.h",
13 "data_reduction_proxy_delegate.cc", 13 "data_reduction_proxy_delegate.cc",
14 "data_reduction_proxy_delegate.h", 14 "data_reduction_proxy_delegate.h",
15 "data_reduction_proxy_interceptor.cc", 15 "data_reduction_proxy_interceptor.cc",
16 "data_reduction_proxy_interceptor.h", 16 "data_reduction_proxy_interceptor.h",
17 "data_reduction_proxy_io_data.cc",
18 "data_reduction_proxy_io_data.h",
17 "data_reduction_proxy_metrics.cc", 19 "data_reduction_proxy_metrics.cc",
18 "data_reduction_proxy_metrics.h", 20 "data_reduction_proxy_metrics.h",
19 "data_reduction_proxy_network_delegate.cc", 21 "data_reduction_proxy_network_delegate.cc",
20 "data_reduction_proxy_network_delegate.h", 22 "data_reduction_proxy_network_delegate.h",
21 "data_reduction_proxy_prefs.cc", 23 "data_reduction_proxy_prefs.cc",
22 "data_reduction_proxy_prefs.h", 24 "data_reduction_proxy_prefs.h",
23 "data_reduction_proxy_settings.cc", 25 "data_reduction_proxy_settings.cc",
24 "data_reduction_proxy_settings.h", 26 "data_reduction_proxy_settings.h",
25 "data_reduction_proxy_statistics_prefs.cc", 27 "data_reduction_proxy_statistics_prefs.cc",
26 "data_reduction_proxy_statistics_prefs.h", 28 "data_reduction_proxy_statistics_prefs.h",
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 ":test_support", 87 ":test_support",
86 "//base", 88 "//base",
87 "//base:prefs_test_support", 89 "//base:prefs_test_support",
88 "//base/test:test_support", 90 "//base/test:test_support",
89 "//components/data_reduction_proxy/core/common:test_support", 91 "//components/data_reduction_proxy/core/common:test_support",
90 "//net:test_support", 92 "//net:test_support",
91 "//testing/gmock", 93 "//testing/gmock",
92 "//testing/gtest", 94 "//testing/gtest",
93 ] 95 ]
94 } 96 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698