| 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", |
| 11 "data_reduction_proxy_configurator.h", | 11 "data_reduction_proxy_configurator.h", |
| 12 "data_reduction_proxy_delegate.cc", | 12 "data_reduction_proxy_delegate.cc", |
| 13 "data_reduction_proxy_delegate.h", | 13 "data_reduction_proxy_delegate.h", |
| 14 "data_reduction_proxy_metrics.cc", | 14 "data_reduction_proxy_metrics.cc", |
| 15 "data_reduction_proxy_metrics.h", | 15 "data_reduction_proxy_metrics.h", |
| 16 "data_reduction_proxy_params.cc", | 16 "data_reduction_proxy_params.cc", |
| 17 "data_reduction_proxy_params.h", | 17 "data_reduction_proxy_params.h", |
| 18 "data_reduction_proxy_prefs.cc", | 18 "data_reduction_proxy_prefs.cc", |
| 19 "data_reduction_proxy_prefs.h", | 19 "data_reduction_proxy_prefs.h", |
| 20 "data_reduction_proxy_protocol.cc", | 20 "data_reduction_proxy_protocol.cc", |
| 21 "data_reduction_proxy_protocol.h", | 21 "data_reduction_proxy_protocol.h", |
| 22 "data_reduction_proxy_settings.cc", | 22 "data_reduction_proxy_settings.cc", |
| 23 "data_reduction_proxy_settings.h", | 23 "data_reduction_proxy_settings.h", |
| 24 "data_reduction_proxy_statistics.cc", |
| 25 "data_reduction_proxy_statistics.h", |
| 24 "data_reduction_proxy_statistics_prefs.cc", | 26 "data_reduction_proxy_statistics_prefs.cc", |
| 25 "data_reduction_proxy_statistics_prefs.h", | 27 "data_reduction_proxy_statistics_prefs.h", |
| 26 "data_reduction_proxy_tamper_detection.cc", | 28 "data_reduction_proxy_tamper_detection.cc", |
| 27 "data_reduction_proxy_tamper_detection.h", | 29 "data_reduction_proxy_tamper_detection.h", |
| 28 "data_reduction_proxy_usage_stats.cc", | 30 "data_reduction_proxy_usage_stats.cc", |
| 29 "data_reduction_proxy_usage_stats.h", | 31 "data_reduction_proxy_usage_stats.h", |
| 30 ] | 32 ] |
| 31 | 33 |
| 32 deps = [ | 34 deps = [ |
| 33 "//base", | 35 "//base", |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 "data_reduction_proxy_usage_stats_unittest.cc", | 72 "data_reduction_proxy_usage_stats_unittest.cc", |
| 71 ] | 73 ] |
| 72 | 74 |
| 73 deps = [ | 75 deps = [ |
| 74 ":browser", | 76 ":browser", |
| 75 ":test_support", | 77 ":test_support", |
| 76 "//testing/gmock", | 78 "//testing/gmock", |
| 77 "//testing/gtest", | 79 "//testing/gtest", |
| 78 ] | 80 ] |
| 79 } | 81 } |
| OLD | NEW |