| 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", |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 if (!is_ios) { | 92 if (!is_ios) { |
| 93 defines += [ "USE_GOOGLE_API_KEYS_FOR_AUTH_KEY" ] | 93 defines += [ "USE_GOOGLE_API_KEYS_FOR_AUTH_KEY" ] |
| 94 } | 94 } |
| 95 } | 95 } |
| 96 | 96 |
| 97 source_set("test_support") { | 97 source_set("test_support") { |
| 98 testonly = true | 98 testonly = true |
| 99 sources = [ | 99 sources = [ |
| 100 "data_reduction_proxy_config_test_utils.cc", | 100 "data_reduction_proxy_config_test_utils.cc", |
| 101 "data_reduction_proxy_config_test_utils.h", | 101 "data_reduction_proxy_config_test_utils.h", |
| 102 "data_reduction_proxy_configurator_test_utils.cc", | |
| 103 "data_reduction_proxy_configurator_test_utils.h", | |
| 104 "data_reduction_proxy_settings_test_utils.cc", | 102 "data_reduction_proxy_settings_test_utils.cc", |
| 105 "data_reduction_proxy_settings_test_utils.h", | 103 "data_reduction_proxy_settings_test_utils.h", |
| 106 "data_reduction_proxy_test_utils.cc", | 104 "data_reduction_proxy_test_utils.cc", |
| 107 "data_reduction_proxy_test_utils.h", | 105 "data_reduction_proxy_test_utils.h", |
| 108 ] | 106 ] |
| 109 | 107 |
| 110 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 108 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 111 | 109 |
| 112 public_deps = [ | 110 public_deps = [ |
| 113 ":browser", | 111 ":browser", |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 "//base/test:test_support", | 174 "//base/test:test_support", |
| 177 "//components/data_reduction_proxy/core/common:test_support", | 175 "//components/data_reduction_proxy/core/common:test_support", |
| 178 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto", | 176 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto", |
| 179 "//components/prefs:test_support", | 177 "//components/prefs:test_support", |
| 180 "//components/variations", | 178 "//components/variations", |
| 181 "//net:test_support", | 179 "//net:test_support", |
| 182 "//testing/gmock", | 180 "//testing/gmock", |
| 183 "//testing/gtest", | 181 "//testing/gtest", |
| 184 ] | 182 ] |
| 185 } | 183 } |
| OLD | NEW |