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_config_service.cc", | 9 "data_reduction_proxy_config_service.cc", |
10 "data_reduction_proxy_config_service.h", | 10 "data_reduction_proxy_config_service.h", |
(...skipping 16 matching lines...) Expand all Loading... |
27 "data_reduction_proxy_tamper_detection.h", | 27 "data_reduction_proxy_tamper_detection.h", |
28 "data_reduction_proxy_usage_stats.cc", | 28 "data_reduction_proxy_usage_stats.cc", |
29 "data_reduction_proxy_usage_stats.h", | 29 "data_reduction_proxy_usage_stats.h", |
30 ] | 30 ] |
31 | 31 |
32 deps = [ | 32 deps = [ |
33 "//base", | 33 "//base", |
34 "//components/data_reduction_proxy/common", | 34 "//components/data_reduction_proxy/common", |
35 "//components/pref_registry", | 35 "//components/pref_registry", |
36 "//crypto", | 36 "//crypto", |
| 37 "//google_apis", |
37 "//net", | 38 "//net", |
38 ] | 39 ] |
39 } | 40 } |
40 | 41 |
41 static_library("test_support") { | 42 static_library("test_support") { |
42 testonly = true | 43 testonly = true |
43 sources = [ | 44 sources = [ |
44 "data_reduction_proxy_params_test_utils.cc", | 45 "data_reduction_proxy_params_test_utils.cc", |
45 "data_reduction_proxy_params_test_utils.h", | 46 "data_reduction_proxy_params_test_utils.h", |
46 "data_reduction_proxy_settings_test_utils.cc", | 47 "data_reduction_proxy_settings_test_utils.cc", |
(...skipping 23 matching lines...) Expand all Loading... |
70 "data_reduction_proxy_usage_stats_unittest.cc", | 71 "data_reduction_proxy_usage_stats_unittest.cc", |
71 ] | 72 ] |
72 | 73 |
73 deps = [ | 74 deps = [ |
74 ":browser", | 75 ":browser", |
75 ":test_support", | 76 ":test_support", |
76 "//testing/gmock", | 77 "//testing/gmock", |
77 "//testing/gtest", | 78 "//testing/gtest", |
78 ] | 79 ] |
79 } | 80 } |
OLD | NEW |