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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 "//third_party/leveldatabase", | 89 "//third_party/leveldatabase", |
90 "//url", | 90 "//url", |
91 ] | 91 ] |
92 | 92 |
93 defines = [ "USE_GOOGLE_API_KEYS" ] | 93 defines = [ "USE_GOOGLE_API_KEYS" ] |
94 if (!is_ios) { | 94 if (!is_ios) { |
95 defines += [ "USE_GOOGLE_API_KEYS_FOR_AUTH_KEY" ] | 95 defines += [ "USE_GOOGLE_API_KEYS_FOR_AUTH_KEY" ] |
96 } | 96 } |
97 } | 97 } |
98 | 98 |
99 source_set("test_support") { | 99 static_library("test_support") { |
100 testonly = true | 100 testonly = true |
101 sources = [ | 101 sources = [ |
102 "data_reduction_proxy_config_test_utils.cc", | 102 "data_reduction_proxy_config_test_utils.cc", |
103 "data_reduction_proxy_config_test_utils.h", | 103 "data_reduction_proxy_config_test_utils.h", |
104 "data_reduction_proxy_settings_test_utils.cc", | 104 "data_reduction_proxy_settings_test_utils.cc", |
105 "data_reduction_proxy_settings_test_utils.h", | 105 "data_reduction_proxy_settings_test_utils.h", |
106 "data_reduction_proxy_test_utils.cc", | 106 "data_reduction_proxy_test_utils.cc", |
107 "data_reduction_proxy_test_utils.h", | 107 "data_reduction_proxy_test_utils.h", |
108 ] | 108 ] |
109 | 109 |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 "//base/test:test_support", | 177 "//base/test:test_support", |
178 "//components/data_reduction_proxy/core/common:test_support", | 178 "//components/data_reduction_proxy/core/common:test_support", |
179 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto", | 179 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto", |
180 "//components/prefs:test_support", | 180 "//components/prefs:test_support", |
181 "//components/variations", | 181 "//components/variations", |
182 "//net:test_support", | 182 "//net:test_support", |
183 "//testing/gmock", | 183 "//testing/gmock", |
184 "//testing/gtest", | 184 "//testing/gtest", |
185 ] | 185 ] |
186 } | 186 } |
OLD | NEW |