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", | 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_config.cc", |
| 12 "data_reduction_proxy_config.h", |
11 "data_reduction_proxy_configurator.cc", | 13 "data_reduction_proxy_configurator.cc", |
12 "data_reduction_proxy_configurator.h", | 14 "data_reduction_proxy_configurator.h", |
13 "data_reduction_proxy_delegate.cc", | 15 "data_reduction_proxy_delegate.cc", |
14 "data_reduction_proxy_delegate.h", | 16 "data_reduction_proxy_delegate.h", |
15 "data_reduction_proxy_interceptor.cc", | 17 "data_reduction_proxy_interceptor.cc", |
16 "data_reduction_proxy_interceptor.h", | 18 "data_reduction_proxy_interceptor.h", |
17 "data_reduction_proxy_io_data.cc", | 19 "data_reduction_proxy_io_data.cc", |
18 "data_reduction_proxy_io_data.h", | 20 "data_reduction_proxy_io_data.h", |
19 "data_reduction_proxy_metrics.cc", | 21 "data_reduction_proxy_metrics.cc", |
20 "data_reduction_proxy_metrics.h", | 22 "data_reduction_proxy_metrics.h", |
(...skipping 21 matching lines...) Expand all Loading... |
42 "//url", | 44 "//url", |
43 ] | 45 ] |
44 if (!is_android && !is_ios) { | 46 if (!is_android && !is_ios) { |
45 deps += [ "//google_apis" ] | 47 deps += [ "//google_apis" ] |
46 } | 48 } |
47 } | 49 } |
48 | 50 |
49 source_set("test_support") { | 51 source_set("test_support") { |
50 testonly = true | 52 testonly = true |
51 sources = [ | 53 sources = [ |
| 54 "data_reduction_proxy_config_test_utils.cc", |
| 55 "data_reduction_proxy_config_test_utils.h", |
| 56 "data_reduction_proxy_configurator_test_utils.cc", |
| 57 "data_reduction_proxy_configurator_test_utils.h", |
52 "data_reduction_proxy_settings_test_utils.cc", | 58 "data_reduction_proxy_settings_test_utils.cc", |
53 "data_reduction_proxy_settings_test_utils.h", | 59 "data_reduction_proxy_settings_test_utils.h", |
54 ] | 60 ] |
55 | 61 |
56 public_deps = [ | 62 public_deps = [ |
57 ":browser", | 63 ":browser", |
58 ] | 64 ] |
59 deps = [ | 65 deps = [ |
60 "//base", | 66 "//base", |
61 "//base:prefs_test_support", | 67 "//base:prefs_test_support", |
62 "//components/data_reduction_proxy/core/common", | 68 "//components/data_reduction_proxy/core/common", |
63 "//components/data_reduction_proxy/core/common:test_support", | 69 "//components/data_reduction_proxy/core/common:test_support", |
64 "//net", | 70 "//net", |
65 "//net:test_support", | 71 "//net:test_support", |
66 "//testing/gmock", | 72 "//testing/gmock", |
67 "//testing/gtest", | 73 "//testing/gtest", |
68 ] | 74 ] |
69 } | 75 } |
70 | 76 |
71 source_set("unit_tests") { | 77 source_set("unit_tests") { |
72 testonly = true | 78 testonly = true |
73 sources = [ | 79 sources = [ |
74 "data_reduction_proxy_auth_request_handler_unittest.cc", | 80 "data_reduction_proxy_auth_request_handler_unittest.cc", |
75 "data_reduction_proxy_bypass_protocol_unittest.cc", | 81 "data_reduction_proxy_bypass_protocol_unittest.cc", |
| 82 "data_reduction_proxy_config_unittest.cc", |
76 "data_reduction_proxy_configurator_unittest.cc", | 83 "data_reduction_proxy_configurator_unittest.cc", |
77 "data_reduction_proxy_interceptor_unittest.cc", | 84 "data_reduction_proxy_interceptor_unittest.cc", |
78 "data_reduction_proxy_metrics_unittest.cc", | 85 "data_reduction_proxy_metrics_unittest.cc", |
79 "data_reduction_proxy_network_delegate_unittest.cc", | 86 "data_reduction_proxy_network_delegate_unittest.cc", |
80 "data_reduction_proxy_prefs_unittest.cc", | 87 "data_reduction_proxy_prefs_unittest.cc", |
81 "data_reduction_proxy_settings_unittest.cc", | 88 "data_reduction_proxy_settings_unittest.cc", |
82 "data_reduction_proxy_usage_stats_unittest.cc", | 89 "data_reduction_proxy_usage_stats_unittest.cc", |
83 ] | 90 ] |
84 | 91 |
85 deps = [ | 92 deps = [ |
86 ":browser", | 93 ":browser", |
87 ":test_support", | 94 ":test_support", |
88 "//base", | 95 "//base", |
89 "//base:prefs_test_support", | 96 "//base:prefs_test_support", |
90 "//base/test:test_support", | 97 "//base/test:test_support", |
91 "//components/data_reduction_proxy/core/common:test_support", | 98 "//components/data_reduction_proxy/core/common:test_support", |
92 "//net:test_support", | 99 "//net:test_support", |
93 "//testing/gmock", | 100 "//testing/gmock", |
94 "//testing/gtest", | 101 "//testing/gtest", |
95 ] | 102 ] |
96 } | 103 } |
OLD | NEW |