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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 deps = [ | 43 deps = [ |
44 ":browser", | 44 ":browser", |
45 "//base", | 45 "//base", |
46 "//components/data_reduction_proxy/common", | 46 "//components/data_reduction_proxy/common", |
47 "//net", | 47 "//net", |
48 "//net:test_support", | 48 "//net:test_support", |
49 "//testing/gmock", | 49 "//testing/gmock", |
50 "//testing/gtest", | 50 "//testing/gtest", |
51 ] | 51 ] |
52 } | 52 } |
| 53 |
| 54 source_set("unit_tests") { |
| 55 sources = [ |
| 56 "data_reduction_proxy_auth_request_handler_unittest.cc", |
| 57 "data_reduction_proxy_config_service_unittest.cc", |
| 58 "data_reduction_proxy_metrics_unittest.cc", |
| 59 "data_reduction_proxy_params_unittest.cc", |
| 60 "data_reduction_proxy_protocol_unittest.cc", |
| 61 "data_reduction_proxy_settings_unittest.cc", |
| 62 "data_reduction_proxy_usage_stats_unittest.cc", |
| 63 ] |
| 64 |
| 65 deps = [ |
| 66 ":browser", |
| 67 ":test_support", |
| 68 "//testing/gmock", |
| 69 "//testing/gtest", |
| 70 ] |
| 71 } |
OLD | NEW |