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

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

Issue 791493015: Adding q=low to the Chrome-Proxy request header (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase test fixes Created 5 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 static_library("browser") { 5 static_library("browser") {
6 sources = [ 6 sources = [
7 "data_reduction_proxy_auth_request_handler.cc",
8 "data_reduction_proxy_auth_request_handler.h",
9 "data_reduction_proxy_bypass_protocol.cc", 7 "data_reduction_proxy_bypass_protocol.cc",
10 "data_reduction_proxy_bypass_protocol.h", 8 "data_reduction_proxy_bypass_protocol.h",
11 "data_reduction_proxy_config.cc", 9 "data_reduction_proxy_config.cc",
12 "data_reduction_proxy_config.h", 10 "data_reduction_proxy_config.h",
13 "data_reduction_proxy_configurator.cc", 11 "data_reduction_proxy_configurator.cc",
14 "data_reduction_proxy_configurator.h", 12 "data_reduction_proxy_configurator.h",
15 "data_reduction_proxy_delegate.cc", 13 "data_reduction_proxy_delegate.cc",
16 "data_reduction_proxy_delegate.h", 14 "data_reduction_proxy_delegate.h",
17 "data_reduction_proxy_interceptor.cc", 15 "data_reduction_proxy_interceptor.cc",
18 "data_reduction_proxy_interceptor.h", 16 "data_reduction_proxy_interceptor.h",
19 "data_reduction_proxy_io_data.cc", 17 "data_reduction_proxy_io_data.cc",
20 "data_reduction_proxy_io_data.h", 18 "data_reduction_proxy_io_data.h",
21 "data_reduction_proxy_metrics.cc", 19 "data_reduction_proxy_metrics.cc",
22 "data_reduction_proxy_metrics.h", 20 "data_reduction_proxy_metrics.h",
23 "data_reduction_proxy_network_delegate.cc", 21 "data_reduction_proxy_network_delegate.cc",
24 "data_reduction_proxy_network_delegate.h", 22 "data_reduction_proxy_network_delegate.h",
25 "data_reduction_proxy_prefs.cc", 23 "data_reduction_proxy_prefs.cc",
26 "data_reduction_proxy_prefs.h", 24 "data_reduction_proxy_prefs.h",
25 "data_reduction_proxy_request_options.cc",
26 "data_reduction_proxy_request_options.h",
27 "data_reduction_proxy_settings.cc", 27 "data_reduction_proxy_settings.cc",
28 "data_reduction_proxy_settings.h", 28 "data_reduction_proxy_settings.h",
29 "data_reduction_proxy_statistics_prefs.cc", 29 "data_reduction_proxy_statistics_prefs.cc",
30 "data_reduction_proxy_statistics_prefs.h", 30 "data_reduction_proxy_statistics_prefs.h",
31 "data_reduction_proxy_tamper_detection.cc", 31 "data_reduction_proxy_tamper_detection.cc",
32 "data_reduction_proxy_tamper_detection.h", 32 "data_reduction_proxy_tamper_detection.h",
33 "data_reduction_proxy_usage_stats.cc", 33 "data_reduction_proxy_usage_stats.cc",
34 "data_reduction_proxy_usage_stats.h", 34 "data_reduction_proxy_usage_stats.h",
35 ] 35 ]
36 36
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 "//net", 70 "//net",
71 "//net:test_support", 71 "//net:test_support",
72 "//testing/gmock", 72 "//testing/gmock",
73 "//testing/gtest", 73 "//testing/gtest",
74 ] 74 ]
75 } 75 }
76 76
77 source_set("unit_tests") { 77 source_set("unit_tests") {
78 testonly = true 78 testonly = true
79 sources = [ 79 sources = [
80 "data_reduction_proxy_auth_request_handler_unittest.cc",
81 "data_reduction_proxy_bypass_protocol_unittest.cc", 80 "data_reduction_proxy_bypass_protocol_unittest.cc",
82 "data_reduction_proxy_config_unittest.cc", 81 "data_reduction_proxy_config_unittest.cc",
83 "data_reduction_proxy_configurator_unittest.cc", 82 "data_reduction_proxy_configurator_unittest.cc",
84 "data_reduction_proxy_interceptor_unittest.cc", 83 "data_reduction_proxy_interceptor_unittest.cc",
85 "data_reduction_proxy_metrics_unittest.cc", 84 "data_reduction_proxy_metrics_unittest.cc",
86 "data_reduction_proxy_network_delegate_unittest.cc", 85 "data_reduction_proxy_network_delegate_unittest.cc",
87 "data_reduction_proxy_prefs_unittest.cc", 86 "data_reduction_proxy_prefs_unittest.cc",
87 "data_reduction_proxy_request_options_unittest.cc",
88 "data_reduction_proxy_settings_unittest.cc", 88 "data_reduction_proxy_settings_unittest.cc",
89 "data_reduction_proxy_usage_stats_unittest.cc", 89 "data_reduction_proxy_usage_stats_unittest.cc",
90 ] 90 ]
91 91
92 deps = [ 92 deps = [
93 ":browser", 93 ":browser",
94 ":test_support", 94 ":test_support",
95 "//base", 95 "//base",
96 "//base:prefs_test_support", 96 "//base:prefs_test_support",
97 "//base/test:test_support", 97 "//base/test:test_support",
98 "//components/data_reduction_proxy/core/common:test_support", 98 "//components/data_reduction_proxy/core/common:test_support",
99 "//net:test_support", 99 "//net:test_support",
100 "//testing/gmock", 100 "//testing/gmock",
101 "//testing/gtest", 101 "//testing/gtest",
102 ] 102 ]
103 } 103 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698