| 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 21 matching lines...) Expand all Loading... |
| 32 deps = [ | 32 deps = [ |
| 33 "//base", | 33 "//base", |
| 34 "//base:prefs", | 34 "//base:prefs", |
| 35 "//components/data_reduction_proxy/core/common", | 35 "//components/data_reduction_proxy/core/common", |
| 36 "//components/pref_registry", | 36 "//components/pref_registry", |
| 37 "//crypto", | 37 "//crypto", |
| 38 "//net", | 38 "//net", |
| 39 "//url", | 39 "//url", |
| 40 ] | 40 ] |
| 41 if (!is_android && !is_ios) { | 41 if (!is_android && !is_ios) { |
| 42 deps += [ | 42 deps += [ "//google_apis" ] |
| 43 "//google_apis", | |
| 44 ] | |
| 45 } | 43 } |
| 46 } | 44 } |
| 47 | 45 |
| 48 source_set("test_support") { | 46 source_set("test_support") { |
| 49 testonly = true | 47 testonly = true |
| 50 sources = [ | 48 sources = [ |
| 51 "data_reduction_proxy_settings_test_utils.cc", | 49 "data_reduction_proxy_settings_test_utils.cc", |
| 52 "data_reduction_proxy_settings_test_utils.h", | 50 "data_reduction_proxy_settings_test_utils.h", |
| 53 ] | 51 ] |
| 54 | 52 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 85 ":test_support", | 83 ":test_support", |
| 86 "//base", | 84 "//base", |
| 87 "//base:prefs_test_support", | 85 "//base:prefs_test_support", |
| 88 "//base/test:test_support", | 86 "//base/test:test_support", |
| 89 "//components/data_reduction_proxy/core/common:test_support", | 87 "//components/data_reduction_proxy/core/common:test_support", |
| 90 "//net:test_support", | 88 "//net:test_support", |
| 91 "//testing/gmock", | 89 "//testing/gmock", |
| 92 "//testing/gtest", | 90 "//testing/gtest", |
| 93 ] | 91 ] |
| 94 } | 92 } |
| OLD | NEW |