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", |
(...skipping 74 matching lines...) Loading... |
85 "data_reduction_proxy_configurator_unittest.cc", | 85 "data_reduction_proxy_configurator_unittest.cc", |
86 "data_reduction_proxy_interceptor_unittest.cc", | 86 "data_reduction_proxy_interceptor_unittest.cc", |
87 "data_reduction_proxy_metrics_unittest.cc", | 87 "data_reduction_proxy_metrics_unittest.cc", |
88 "data_reduction_proxy_network_delegate_unittest.cc", | 88 "data_reduction_proxy_network_delegate_unittest.cc", |
89 "data_reduction_proxy_prefs_unittest.cc", | 89 "data_reduction_proxy_prefs_unittest.cc", |
90 "data_reduction_proxy_request_options_unittest.cc", | 90 "data_reduction_proxy_request_options_unittest.cc", |
91 "data_reduction_proxy_settings_unittest.cc", | 91 "data_reduction_proxy_settings_unittest.cc", |
92 "data_reduction_proxy_usage_stats_unittest.cc", | 92 "data_reduction_proxy_usage_stats_unittest.cc", |
93 ] | 93 ] |
94 | 94 |
| 95 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 96 |
95 deps = [ | 97 deps = [ |
96 ":browser", | 98 ":browser", |
97 ":test_support", | 99 ":test_support", |
98 "//base", | 100 "//base", |
99 "//base:prefs_test_support", | 101 "//base:prefs_test_support", |
100 "//base/test:test_support", | 102 "//base/test:test_support", |
101 "//components/data_reduction_proxy/core/common:test_support", | 103 "//components/data_reduction_proxy/core/common:test_support", |
102 "//net:test_support", | 104 "//net:test_support", |
103 "//testing/gmock", | 105 "//testing/gmock", |
104 "//testing/gtest", | 106 "//testing/gtest", |
105 ] | 107 ] |
106 } | 108 } |
OLD | NEW |