| 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 ] | 58 ] |
| 59 } | 59 } |
| 60 | 60 |
| 61 source_set("unit_tests") { | 61 source_set("unit_tests") { |
| 62 testonly = true | 62 testonly = true |
| 63 sources = [ | 63 sources = [ |
| 64 "data_reduction_proxy_auth_request_handler_unittest.cc", | 64 "data_reduction_proxy_auth_request_handler_unittest.cc", |
| 65 "data_reduction_proxy_config_service_unittest.cc", | 65 "data_reduction_proxy_config_service_unittest.cc", |
| 66 "data_reduction_proxy_metrics_unittest.cc", | 66 "data_reduction_proxy_metrics_unittest.cc", |
| 67 "data_reduction_proxy_params_unittest.cc", | 67 "data_reduction_proxy_params_unittest.cc", |
| 68 "data_reduction_proxy_prefs_unittest.cc", |
| 68 "data_reduction_proxy_protocol_unittest.cc", | 69 "data_reduction_proxy_protocol_unittest.cc", |
| 69 "data_reduction_proxy_settings_unittest.cc", | 70 "data_reduction_proxy_settings_unittest.cc", |
| 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 |