| 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_config.cc", | 9 "data_reduction_proxy_config.cc", |
| 10 "data_reduction_proxy_config.h", | 10 "data_reduction_proxy_config.h", |
| 11 "data_reduction_proxy_configurator.cc", | 11 "data_reduction_proxy_configurator.cc", |
| 12 "data_reduction_proxy_configurator.h", | 12 "data_reduction_proxy_configurator.h", |
| 13 "data_reduction_proxy_debug_ui_service.h", |
| 13 "data_reduction_proxy_delegate.cc", | 14 "data_reduction_proxy_delegate.cc", |
| 14 "data_reduction_proxy_delegate.h", | 15 "data_reduction_proxy_delegate.h", |
| 15 "data_reduction_proxy_interceptor.cc", | 16 "data_reduction_proxy_interceptor.cc", |
| 16 "data_reduction_proxy_interceptor.h", | 17 "data_reduction_proxy_interceptor.h", |
| 17 "data_reduction_proxy_io_data.cc", | 18 "data_reduction_proxy_io_data.cc", |
| 18 "data_reduction_proxy_io_data.h", | 19 "data_reduction_proxy_io_data.h", |
| 19 "data_reduction_proxy_metrics.cc", | 20 "data_reduction_proxy_metrics.cc", |
| 20 "data_reduction_proxy_metrics.h", | 21 "data_reduction_proxy_metrics.h", |
| 21 "data_reduction_proxy_network_delegate.cc", | 22 "data_reduction_proxy_network_delegate.cc", |
| 22 "data_reduction_proxy_network_delegate.h", | 23 "data_reduction_proxy_network_delegate.h", |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 ":test_support", | 95 ":test_support", |
| 95 "//base", | 96 "//base", |
| 96 "//base:prefs_test_support", | 97 "//base:prefs_test_support", |
| 97 "//base/test:test_support", | 98 "//base/test:test_support", |
| 98 "//components/data_reduction_proxy/core/common:test_support", | 99 "//components/data_reduction_proxy/core/common:test_support", |
| 99 "//net:test_support", | 100 "//net:test_support", |
| 100 "//testing/gmock", | 101 "//testing/gmock", |
| 101 "//testing/gtest", | 102 "//testing/gtest", |
| 102 ] | 103 ] |
| 103 } | 104 } |
| OLD | NEW |