| 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_bypass_stats.cc", | 9 "data_reduction_proxy_bypass_stats.cc", |
| 10 "data_reduction_proxy_bypass_stats.h", | 10 "data_reduction_proxy_bypass_stats.h", |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 "//testing/gmock", | 84 "//testing/gmock", |
| 85 "//testing/gtest", | 85 "//testing/gtest", |
| 86 ] | 86 ] |
| 87 } | 87 } |
| 88 | 88 |
| 89 source_set("unit_tests") { | 89 source_set("unit_tests") { |
| 90 testonly = true | 90 testonly = true |
| 91 sources = [ | 91 sources = [ |
| 92 "data_reduction_proxy_bypass_protocol_unittest.cc", | 92 "data_reduction_proxy_bypass_protocol_unittest.cc", |
| 93 "data_reduction_proxy_bypass_stats_unittest.cc", | 93 "data_reduction_proxy_bypass_stats_unittest.cc", |
| 94 "data_reduction_proxy_compression_stats_unittest.cc", |
| 94 "data_reduction_proxy_config_service_client_unittest.cc", | 95 "data_reduction_proxy_config_service_client_unittest.cc", |
| 95 "data_reduction_proxy_config_unittest.cc", | 96 "data_reduction_proxy_config_unittest.cc", |
| 96 "data_reduction_proxy_configurator_unittest.cc", | 97 "data_reduction_proxy_configurator_unittest.cc", |
| 97 "data_reduction_proxy_interceptor_unittest.cc", | 98 "data_reduction_proxy_interceptor_unittest.cc", |
| 99 "data_reduction_proxy_io_data_unittest.cc", |
| 98 "data_reduction_proxy_metrics_unittest.cc", | 100 "data_reduction_proxy_metrics_unittest.cc", |
| 99 "data_reduction_proxy_network_delegate_unittest.cc", | 101 "data_reduction_proxy_network_delegate_unittest.cc", |
| 100 "data_reduction_proxy_prefs_unittest.cc", | 102 "data_reduction_proxy_prefs_unittest.cc", |
| 101 "data_reduction_proxy_request_options_unittest.cc", | 103 "data_reduction_proxy_request_options_unittest.cc", |
| 102 "data_reduction_proxy_settings_unittest.cc", | 104 "data_reduction_proxy_settings_unittest.cc", |
| 103 ] | 105 ] |
| 104 | 106 |
| 105 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 107 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 106 | 108 |
| 107 deps = [ | 109 deps = [ |
| 108 ":browser", | 110 ":browser", |
| 109 ":test_support", | 111 ":test_support", |
| 110 "//base", | 112 "//base", |
| 111 "//base:prefs_test_support", | 113 "//base:prefs_test_support", |
| 112 "//base/test:test_support", | 114 "//base/test:test_support", |
| 113 "//components/data_reduction_proxy/core/common:test_support", | 115 "//components/data_reduction_proxy/core/common:test_support", |
| 114 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto", | 116 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto", |
| 115 "//net:test_support", | 117 "//net:test_support", |
| 116 "//testing/gmock", | 118 "//testing/gmock", |
| 117 "//testing/gtest", | 119 "//testing/gtest", |
| 118 ] | 120 ] |
| 119 } | 121 } |
| OLD | NEW |