| 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 19 matching lines...) Expand all Loading... |
| 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) { | 39 if (!is_android && !is_ios) { |
| 40 deps += [ | 40 deps += [ "//google_apis" ] |
| 41 "//google_apis", | |
| 42 ] | |
| 43 } | 41 } |
| 44 } | 42 } |
| 45 | 43 |
| 46 static_library("test_support") { | 44 static_library("test_support") { |
| 47 testonly = true | 45 testonly = true |
| 48 sources = [ | 46 sources = [ |
| 49 "data_reduction_proxy_settings_test_utils.cc", | 47 "data_reduction_proxy_settings_test_utils.cc", |
| 50 "data_reduction_proxy_settings_test_utils.h", | 48 "data_reduction_proxy_settings_test_utils.h", |
| 51 ] | 49 ] |
| 52 | 50 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 75 "data_reduction_proxy_usage_stats_unittest.cc", | 73 "data_reduction_proxy_usage_stats_unittest.cc", |
| 76 ] | 74 ] |
| 77 | 75 |
| 78 deps = [ | 76 deps = [ |
| 79 ":browser", | 77 ":browser", |
| 80 ":test_support", | 78 ":test_support", |
| 81 "//testing/gmock", | 79 "//testing/gmock", |
| 82 "//testing/gtest", | 80 "//testing/gtest", |
| 83 ] | 81 ] |
| 84 } | 82 } |
| OLD | NEW |