| 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_bypass_protocol.cc", | 7 "data_reduction_proxy_bypass_protocol.cc", |
| 8 "data_reduction_proxy_bypass_protocol.h", | 8 "data_reduction_proxy_bypass_protocol.h", |
| 9 "data_reduction_proxy_compression_stats.cc", |
| 10 "data_reduction_proxy_compression_stats.h", |
| 9 "data_reduction_proxy_config.cc", | 11 "data_reduction_proxy_config.cc", |
| 10 "data_reduction_proxy_config.h", | 12 "data_reduction_proxy_config.h", |
| 11 "data_reduction_proxy_configurator.cc", | 13 "data_reduction_proxy_configurator.cc", |
| 12 "data_reduction_proxy_configurator.h", | 14 "data_reduction_proxy_configurator.h", |
| 13 "data_reduction_proxy_debug_ui_service.h", | 15 "data_reduction_proxy_debug_ui_service.h", |
| 14 "data_reduction_proxy_delegate.cc", | 16 "data_reduction_proxy_delegate.cc", |
| 15 "data_reduction_proxy_delegate.h", | 17 "data_reduction_proxy_delegate.h", |
| 16 "data_reduction_proxy_interceptor.cc", | 18 "data_reduction_proxy_interceptor.cc", |
| 17 "data_reduction_proxy_interceptor.h", | 19 "data_reduction_proxy_interceptor.h", |
| 18 "data_reduction_proxy_io_data.cc", | 20 "data_reduction_proxy_io_data.cc", |
| 19 "data_reduction_proxy_io_data.h", | 21 "data_reduction_proxy_io_data.h", |
| 20 "data_reduction_proxy_metrics.cc", | 22 "data_reduction_proxy_metrics.cc", |
| 21 "data_reduction_proxy_metrics.h", | 23 "data_reduction_proxy_metrics.h", |
| 22 "data_reduction_proxy_network_delegate.cc", | 24 "data_reduction_proxy_network_delegate.cc", |
| 23 "data_reduction_proxy_network_delegate.h", | 25 "data_reduction_proxy_network_delegate.h", |
| 24 "data_reduction_proxy_prefs.cc", | 26 "data_reduction_proxy_prefs.cc", |
| 25 "data_reduction_proxy_prefs.h", | 27 "data_reduction_proxy_prefs.h", |
| 26 "data_reduction_proxy_request_options.cc", | 28 "data_reduction_proxy_request_options.cc", |
| 27 "data_reduction_proxy_request_options.h", | 29 "data_reduction_proxy_request_options.h", |
| 28 "data_reduction_proxy_service.cc", | 30 "data_reduction_proxy_service.cc", |
| 29 "data_reduction_proxy_service.h", | 31 "data_reduction_proxy_service.h", |
| 30 "data_reduction_proxy_settings.cc", | 32 "data_reduction_proxy_settings.cc", |
| 31 "data_reduction_proxy_settings.h", | 33 "data_reduction_proxy_settings.h", |
| 32 "data_reduction_proxy_statistics_prefs.cc", | |
| 33 "data_reduction_proxy_statistics_prefs.h", | |
| 34 "data_reduction_proxy_tamper_detection.cc", | 34 "data_reduction_proxy_tamper_detection.cc", |
| 35 "data_reduction_proxy_tamper_detection.h", | 35 "data_reduction_proxy_tamper_detection.h", |
| 36 "data_reduction_proxy_usage_stats.cc", | 36 "data_reduction_proxy_usage_stats.cc", |
| 37 "data_reduction_proxy_usage_stats.h", | 37 "data_reduction_proxy_usage_stats.h", |
| 38 ] | 38 ] |
| 39 | 39 |
| 40 deps = [ | 40 deps = [ |
| 41 "//base", | 41 "//base", |
| 42 "//base:prefs", | 42 "//base:prefs", |
| 43 "//components/data_reduction_proxy/core/common", | 43 "//components/data_reduction_proxy/core/common", |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 ":test_support", | 101 ":test_support", |
| 102 "//base", | 102 "//base", |
| 103 "//base:prefs_test_support", | 103 "//base:prefs_test_support", |
| 104 "//base/test:test_support", | 104 "//base/test:test_support", |
| 105 "//components/data_reduction_proxy/core/common:test_support", | 105 "//components/data_reduction_proxy/core/common:test_support", |
| 106 "//net:test_support", | 106 "//net:test_support", |
| 107 "//testing/gmock", | 107 "//testing/gmock", |
| 108 "//testing/gtest", | 108 "//testing/gtest", |
| 109 ] | 109 ] |
| 110 } | 110 } |
| OLD | NEW |