| 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 browser_sources = [ | 5 browser_sources = [ |
| 6 "data_reduction_proxy_bypass_protocol.cc", | 6 "data_reduction_proxy_bypass_protocol.cc", |
| 7 "data_reduction_proxy_bypass_protocol.h", | 7 "data_reduction_proxy_bypass_protocol.h", |
| 8 "data_reduction_proxy_bypass_stats.cc", | 8 "data_reduction_proxy_bypass_stats.cc", |
| 9 "data_reduction_proxy_bypass_stats.h", | 9 "data_reduction_proxy_bypass_stats.h", |
| 10 "data_reduction_proxy_compression_stats.cc", | 10 "data_reduction_proxy_compression_stats.cc", |
| 11 "data_reduction_proxy_compression_stats.h", | 11 "data_reduction_proxy_compression_stats.h", |
| 12 "data_reduction_proxy_config.cc", | 12 "data_reduction_proxy_config.cc", |
| 13 "data_reduction_proxy_config.h", | 13 "data_reduction_proxy_config.h", |
| 14 "data_reduction_proxy_config_service_client.cc", | 14 "data_reduction_proxy_config_service_client.cc", |
| 15 "data_reduction_proxy_config_service_client.h", | 15 "data_reduction_proxy_config_service_client.h", |
| 16 "data_reduction_proxy_configurator.cc", | 16 "data_reduction_proxy_configurator.cc", |
| 17 "data_reduction_proxy_configurator.h", | 17 "data_reduction_proxy_configurator.h", |
| 18 "data_reduction_proxy_data.cc", |
| 19 "data_reduction_proxy_data.h", |
| 18 "data_reduction_proxy_delegate.cc", | 20 "data_reduction_proxy_delegate.cc", |
| 19 "data_reduction_proxy_delegate.h", | 21 "data_reduction_proxy_delegate.h", |
| 20 "data_reduction_proxy_interceptor.cc", | 22 "data_reduction_proxy_interceptor.cc", |
| 21 "data_reduction_proxy_interceptor.h", | 23 "data_reduction_proxy_interceptor.h", |
| 22 "data_reduction_proxy_io_data.cc", | 24 "data_reduction_proxy_io_data.cc", |
| 23 "data_reduction_proxy_io_data.h", | 25 "data_reduction_proxy_io_data.h", |
| 24 "data_reduction_proxy_metrics.cc", | 26 "data_reduction_proxy_metrics.cc", |
| 25 "data_reduction_proxy_metrics.h", | 27 "data_reduction_proxy_metrics.h", |
| 26 "data_reduction_proxy_mutable_config_values.cc", | 28 "data_reduction_proxy_mutable_config_values.cc", |
| 27 "data_reduction_proxy_mutable_config_values.h", | 29 "data_reduction_proxy_mutable_config_values.h", |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 "//base/test:test_support", | 155 "//base/test:test_support", |
| 154 "//components/data_reduction_proxy/core/common:test_support", | 156 "//components/data_reduction_proxy/core/common:test_support", |
| 155 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto", | 157 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto", |
| 156 "//components/prefs:test_support", | 158 "//components/prefs:test_support", |
| 157 "//components/variations", | 159 "//components/variations", |
| 158 "//net:test_support", | 160 "//net:test_support", |
| 159 "//testing/gmock", | 161 "//testing/gmock", |
| 160 "//testing/gtest", | 162 "//testing/gtest", |
| 161 ] | 163 ] |
| 162 } | 164 } |
| OLD | NEW |