OLD | NEW |
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", |
| 10 "data_reduction_proxy_bypass_protocol.h", |
9 "data_reduction_proxy_configurator.cc", | 11 "data_reduction_proxy_configurator.cc", |
10 "data_reduction_proxy_configurator.h", | 12 "data_reduction_proxy_configurator.h", |
11 "data_reduction_proxy_delegate.cc", | 13 "data_reduction_proxy_delegate.cc", |
12 "data_reduction_proxy_delegate.h", | 14 "data_reduction_proxy_delegate.h", |
13 "data_reduction_proxy_interceptor.cc", | 15 "data_reduction_proxy_interceptor.cc", |
14 "data_reduction_proxy_interceptor.h", | 16 "data_reduction_proxy_interceptor.h", |
15 "data_reduction_proxy_metrics.cc", | 17 "data_reduction_proxy_metrics.cc", |
16 "data_reduction_proxy_metrics.h", | 18 "data_reduction_proxy_metrics.h", |
17 "data_reduction_proxy_network_delegate.cc", | 19 "data_reduction_proxy_network_delegate.cc", |
18 "data_reduction_proxy_network_delegate.h", | 20 "data_reduction_proxy_network_delegate.h", |
19 "data_reduction_proxy_prefs.cc", | 21 "data_reduction_proxy_prefs.cc", |
20 "data_reduction_proxy_prefs.h", | 22 "data_reduction_proxy_prefs.h", |
21 "data_reduction_proxy_protocol.cc", | |
22 "data_reduction_proxy_protocol.h", | |
23 "data_reduction_proxy_settings.cc", | 23 "data_reduction_proxy_settings.cc", |
24 "data_reduction_proxy_settings.h", | 24 "data_reduction_proxy_settings.h", |
25 "data_reduction_proxy_statistics_prefs.cc", | 25 "data_reduction_proxy_statistics_prefs.cc", |
26 "data_reduction_proxy_statistics_prefs.h", | 26 "data_reduction_proxy_statistics_prefs.h", |
27 "data_reduction_proxy_tamper_detection.cc", | 27 "data_reduction_proxy_tamper_detection.cc", |
28 "data_reduction_proxy_tamper_detection.h", | 28 "data_reduction_proxy_tamper_detection.h", |
29 "data_reduction_proxy_usage_stats.cc", | 29 "data_reduction_proxy_usage_stats.cc", |
30 "data_reduction_proxy_usage_stats.h", | 30 "data_reduction_proxy_usage_stats.h", |
31 ] | 31 ] |
32 | 32 |
(...skipping 30 matching lines...) Expand all Loading... |
63 "//net:test_support", | 63 "//net:test_support", |
64 "//testing/gmock", | 64 "//testing/gmock", |
65 "//testing/gtest", | 65 "//testing/gtest", |
66 ] | 66 ] |
67 } | 67 } |
68 | 68 |
69 source_set("unit_tests") { | 69 source_set("unit_tests") { |
70 testonly = true | 70 testonly = true |
71 sources = [ | 71 sources = [ |
72 "data_reduction_proxy_auth_request_handler_unittest.cc", | 72 "data_reduction_proxy_auth_request_handler_unittest.cc", |
| 73 "data_reduction_proxy_bypass_protocol_unittest.cc", |
73 "data_reduction_proxy_configurator_unittest.cc", | 74 "data_reduction_proxy_configurator_unittest.cc", |
74 "data_reduction_proxy_interceptor_unittest.cc", | 75 "data_reduction_proxy_interceptor_unittest.cc", |
75 "data_reduction_proxy_metrics_unittest.cc", | 76 "data_reduction_proxy_metrics_unittest.cc", |
76 "data_reduction_proxy_network_delegate_unittest.cc", | 77 "data_reduction_proxy_network_delegate_unittest.cc", |
77 "data_reduction_proxy_prefs_unittest.cc", | 78 "data_reduction_proxy_prefs_unittest.cc", |
78 "data_reduction_proxy_protocol_unittest.cc", | |
79 "data_reduction_proxy_settings_unittest.cc", | 79 "data_reduction_proxy_settings_unittest.cc", |
80 "data_reduction_proxy_usage_stats_unittest.cc", | 80 "data_reduction_proxy_usage_stats_unittest.cc", |
81 ] | 81 ] |
82 | 82 |
83 deps = [ | 83 deps = [ |
84 ":browser", | 84 ":browser", |
85 ":test_support", | 85 ":test_support", |
86 "//base", | 86 "//base", |
87 "//base:prefs_test_support", | 87 "//base:prefs_test_support", |
88 "//base/test:test_support", | 88 "//base/test:test_support", |
89 "//components/data_reduction_proxy/core/common:test_support", | 89 "//components/data_reduction_proxy/core/common:test_support", |
90 "//net:test_support", | 90 "//net:test_support", |
91 "//testing/gmock", | 91 "//testing/gmock", |
92 "//testing/gtest", | 92 "//testing/gtest", |
93 ] | 93 ] |
94 } | 94 } |
OLD | NEW |