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_delayed_pref_service.cc", |
| 10 "data_reduction_proxy_delayed_pref_service.h" |
9 "data_reduction_proxy_config_service.cc", | 11 "data_reduction_proxy_config_service.cc", |
10 "data_reduction_proxy_config_service.h", | 12 "data_reduction_proxy_config_service.h", |
11 "data_reduction_proxy_configurator.h", | 13 "data_reduction_proxy_configurator.h", |
12 "data_reduction_proxy_metrics.cc", | 14 "data_reduction_proxy_metrics.cc", |
13 "data_reduction_proxy_metrics.h", | 15 "data_reduction_proxy_metrics.h", |
14 "data_reduction_proxy_params.cc", | 16 "data_reduction_proxy_params.cc", |
15 "data_reduction_proxy_params.h", | 17 "data_reduction_proxy_params.h", |
16 "data_reduction_proxy_prefs.cc", | 18 "data_reduction_proxy_prefs.cc", |
17 "data_reduction_proxy_prefs.h", | 19 "data_reduction_proxy_prefs.h", |
18 "data_reduction_proxy_protocol.cc", | 20 "data_reduction_proxy_protocol.cc", |
(...skipping 28 matching lines...) Expand all Loading... |
47 "//net", | 49 "//net", |
48 "//net:test_support", | 50 "//net:test_support", |
49 "//testing/gmock", | 51 "//testing/gmock", |
50 "//testing/gtest", | 52 "//testing/gtest", |
51 ] | 53 ] |
52 } | 54 } |
53 | 55 |
54 source_set("unit_tests") { | 56 source_set("unit_tests") { |
55 sources = [ | 57 sources = [ |
56 "data_reduction_proxy_auth_request_handler_unittest.cc", | 58 "data_reduction_proxy_auth_request_handler_unittest.cc", |
| 59 "data_reduction_proxy_delayed_pref_service_unittest.cc", |
57 "data_reduction_proxy_config_service_unittest.cc", | 60 "data_reduction_proxy_config_service_unittest.cc", |
58 "data_reduction_proxy_metrics_unittest.cc", | 61 "data_reduction_proxy_metrics_unittest.cc", |
59 "data_reduction_proxy_params_unittest.cc", | 62 "data_reduction_proxy_params_unittest.cc", |
60 "data_reduction_proxy_protocol_unittest.cc", | 63 "data_reduction_proxy_protocol_unittest.cc", |
61 "data_reduction_proxy_settings_unittest.cc", | 64 "data_reduction_proxy_settings_unittest.cc", |
62 "data_reduction_proxy_usage_stats_unittest.cc", | 65 "data_reduction_proxy_usage_stats_unittest.cc", |
63 ] | 66 ] |
64 | 67 |
65 deps = [ | 68 deps = [ |
66 ":browser", | 69 ":browser", |
67 ":test_support", | 70 ":test_support", |
68 "//testing/gmock", | 71 "//testing/gmock", |
69 "//testing/gtest", | 72 "//testing/gtest", |
70 ] | 73 ] |
71 } | 74 } |
OLD | NEW |