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_bypass_protocol.cc", | 7 "data_reduction_proxy_bypass_protocol.cc", |
8 "data_reduction_proxy_bypass_protocol.h", | 8 "data_reduction_proxy_bypass_protocol.h", |
9 "data_reduction_proxy_config.cc", | 9 "data_reduction_proxy_config.cc", |
10 "data_reduction_proxy_config.h", | 10 "data_reduction_proxy_config.h", |
| 11 "data_reduction_proxy_config_service_client.cc", |
| 12 "data_reduction_proxy_config_service_client.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_debug_ui_service.h", | 15 "data_reduction_proxy_debug_ui_service.h", |
14 "data_reduction_proxy_delegate.cc", | 16 "data_reduction_proxy_delegate.cc", |
15 "data_reduction_proxy_delegate.h", | 17 "data_reduction_proxy_delegate.h", |
16 "data_reduction_proxy_interceptor.cc", | 18 "data_reduction_proxy_interceptor.cc", |
17 "data_reduction_proxy_interceptor.h", | 19 "data_reduction_proxy_interceptor.h", |
18 "data_reduction_proxy_io_data.cc", | 20 "data_reduction_proxy_io_data.cc", |
19 "data_reduction_proxy_io_data.h", | 21 "data_reduction_proxy_io_data.h", |
20 "data_reduction_proxy_metrics.cc", | 22 "data_reduction_proxy_metrics.cc", |
(...skipping 13 matching lines...) Expand all Loading... |
34 "data_reduction_proxy_tamper_detection.cc", | 36 "data_reduction_proxy_tamper_detection.cc", |
35 "data_reduction_proxy_tamper_detection.h", | 37 "data_reduction_proxy_tamper_detection.h", |
36 "data_reduction_proxy_usage_stats.cc", | 38 "data_reduction_proxy_usage_stats.cc", |
37 "data_reduction_proxy_usage_stats.h", | 39 "data_reduction_proxy_usage_stats.h", |
38 ] | 40 ] |
39 | 41 |
40 deps = [ | 42 deps = [ |
41 "//base", | 43 "//base", |
42 "//base:prefs", | 44 "//base:prefs", |
43 "//components/data_reduction_proxy/core/common", | 45 "//components/data_reduction_proxy/core/common", |
| 46 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto", |
44 "//components/pref_registry", | 47 "//components/pref_registry", |
45 "//crypto", | 48 "//crypto", |
46 "//net", | 49 "//net", |
47 "//url", | 50 "//url", |
48 ] | 51 ] |
49 if (!is_android && !is_ios) { | 52 if (!is_android && !is_ios) { |
50 deps += [ "//google_apis" ] | 53 deps += [ "//google_apis" ] |
51 } | 54 } |
52 } | 55 } |
53 | 56 |
(...skipping 24 matching lines...) Expand all Loading... |
78 "//net:test_support", | 81 "//net:test_support", |
79 "//testing/gmock", | 82 "//testing/gmock", |
80 "//testing/gtest", | 83 "//testing/gtest", |
81 ] | 84 ] |
82 } | 85 } |
83 | 86 |
84 source_set("unit_tests") { | 87 source_set("unit_tests") { |
85 testonly = true | 88 testonly = true |
86 sources = [ | 89 sources = [ |
87 "data_reduction_proxy_bypass_protocol_unittest.cc", | 90 "data_reduction_proxy_bypass_protocol_unittest.cc", |
| 91 "data_reduction_proxy_config_service_client_unittest.cc", |
88 "data_reduction_proxy_config_unittest.cc", | 92 "data_reduction_proxy_config_unittest.cc", |
89 "data_reduction_proxy_configurator_unittest.cc", | 93 "data_reduction_proxy_configurator_unittest.cc", |
90 "data_reduction_proxy_interceptor_unittest.cc", | 94 "data_reduction_proxy_interceptor_unittest.cc", |
91 "data_reduction_proxy_metrics_unittest.cc", | 95 "data_reduction_proxy_metrics_unittest.cc", |
92 "data_reduction_proxy_network_delegate_unittest.cc", | 96 "data_reduction_proxy_network_delegate_unittest.cc", |
93 "data_reduction_proxy_prefs_unittest.cc", | 97 "data_reduction_proxy_prefs_unittest.cc", |
94 "data_reduction_proxy_request_options_unittest.cc", | 98 "data_reduction_proxy_request_options_unittest.cc", |
95 "data_reduction_proxy_settings_unittest.cc", | 99 "data_reduction_proxy_settings_unittest.cc", |
96 "data_reduction_proxy_usage_stats_unittest.cc", | 100 "data_reduction_proxy_usage_stats_unittest.cc", |
97 ] | 101 ] |
98 | 102 |
99 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 103 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
100 | 104 |
101 deps = [ | 105 deps = [ |
102 ":browser", | 106 ":browser", |
103 ":test_support", | 107 ":test_support", |
104 "//base", | 108 "//base", |
105 "//base:prefs_test_support", | 109 "//base:prefs_test_support", |
106 "//base/test:test_support", | 110 "//base/test:test_support", |
107 "//components/data_reduction_proxy/core/common:test_support", | 111 "//components/data_reduction_proxy/core/common:test_support", |
| 112 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto", |
108 "//net:test_support", | 113 "//net:test_support", |
109 "//testing/gmock", | 114 "//testing/gmock", |
110 "//testing/gtest", | 115 "//testing/gtest", |
111 ] | 116 ] |
112 } | 117 } |
OLD | NEW |