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 18 matching lines...) Expand all Loading... |
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/core/common", | 34 "//components/data_reduction_proxy/core/common", |
35 "//components/pref_registry", | 35 "//components/pref_registry", |
36 "//crypto", | 36 "//crypto", |
37 "//net", | 37 "//net", |
38 ] | 38 ] |
| 39 if (!is_android && !is_ios) { |
| 40 deps += [ |
| 41 "//google_apis", |
| 42 ] |
| 43 } |
39 } | 44 } |
40 | 45 |
41 static_library("test_support") { | 46 static_library("test_support") { |
42 testonly = true | 47 testonly = true |
43 sources = [ | 48 sources = [ |
44 "data_reduction_proxy_params_test_utils.cc", | 49 "data_reduction_proxy_params_test_utils.cc", |
45 "data_reduction_proxy_params_test_utils.h", | 50 "data_reduction_proxy_params_test_utils.h", |
46 "data_reduction_proxy_settings_test_utils.cc", | 51 "data_reduction_proxy_settings_test_utils.cc", |
47 "data_reduction_proxy_settings_test_utils.h", | 52 "data_reduction_proxy_settings_test_utils.h", |
48 ] | 53 ] |
(...skipping 21 matching lines...) Expand all Loading... |
70 "data_reduction_proxy_usage_stats_unittest.cc", | 75 "data_reduction_proxy_usage_stats_unittest.cc", |
71 ] | 76 ] |
72 | 77 |
73 deps = [ | 78 deps = [ |
74 ":browser", | 79 ":browser", |
75 ":test_support", | 80 ":test_support", |
76 "//testing/gmock", | 81 "//testing/gmock", |
77 "//testing/gtest", | 82 "//testing/gtest", |
78 ] | 83 ] |
79 } | 84 } |
OLD | NEW |