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