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 import("//build/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
6 | 6 |
7 # This config sets the define that controls which Wallet service to contact | 7 # This config sets the define that controls which Wallet service to contact |
8 # for features using Wallet integration. Unofficial builds won't have the | 8 # for features using Wallet integration. Unofficial builds won't have the |
9 # proper API keys so it uses the "sandbox" test servers instead. | 9 # proper API keys so it uses the "sandbox" test servers instead. |
10 config("wallet_service") { | 10 config("wallet_service") { |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 "keyboard_accessory_metrics_logger.mm", | 150 "keyboard_accessory_metrics_logger.mm", |
151 ] | 151 ] |
152 } | 152 } |
153 | 153 |
154 configs += [ "//build/config:precompiled_headers" ] | 154 configs += [ "//build/config:precompiled_headers" ] |
155 | 155 |
156 deps = [ | 156 deps = [ |
157 "//base", | 157 "//base", |
158 "//base:i18n", | 158 "//base:i18n", |
159 "//base:prefs", | 159 "//base:prefs", |
160 "//third_party/re2", | |
161 "//components/autofill/core/common", | 160 "//components/autofill/core/common", |
162 "//components/compression", | 161 "//components/compression", |
163 "//components/data_use_measurement/core", | 162 "//components/data_use_measurement/core", |
164 "//components/infobars/core", | 163 "//components/infobars/core", |
165 "//components/keyed_service/core", | 164 "//components/keyed_service/core", |
166 "//components/os_crypt", | 165 "//components/os_crypt", |
167 "//components/pref_registry", | 166 "//components/pref_registry", |
168 "//components/rappor", | 167 "//components/rappor", |
169 "//components/resources", | 168 "//components/resources", |
170 "//components/signin/core/browser", | 169 "//components/signin/core/browser", |
171 "//components/signin/core/common", | 170 "//components/signin/core/common", |
172 "//components/strings", | 171 "//components/strings", |
173 "//components/sync_driver", | 172 "//components/sync_driver", |
174 "//components/variations/net", | 173 "//components/variations/net", |
175 "//components/webdata/common", | 174 "//components/webdata/common", |
176 "//google_apis", | 175 "//google_apis", |
177 "//net", | 176 "//net", |
178 "//skia", | 177 "//skia", |
179 "//sql", | 178 "//sql", |
180 "//sync", | 179 "//sync", |
181 "//third_party/fips181", | 180 "//third_party/fips181", |
182 "//third_party/icu", | 181 "//third_party/icu", |
183 "//third_party/libaddressinput:util", | 182 "//third_party/libaddressinput:util", |
| 183 "//third_party/libjingle", |
184 "//third_party/libphonenumber", | 184 "//third_party/libphonenumber", |
185 "//third_party/libjingle", | 185 "//third_party/re2", |
186 "//ui/base", | 186 "//ui/base", |
187 "//ui/gfx", | 187 "//ui/gfx", |
188 "//ui/gfx/geometry", | 188 "//ui/gfx/geometry", |
189 "//url", | 189 "//url", |
190 ] | 190 ] |
191 | 191 |
192 configs += [ | 192 configs += [ |
193 ":wallet_service", | 193 ":wallet_service", |
194 "//build/config/compiler:no_size_t_to_int_warning", | 194 "//build/config/compiler:no_size_t_to_int_warning", |
195 ] | 195 ] |
(...skipping 15 matching lines...) Expand all Loading... |
211 "test_autofill_client.h", | 211 "test_autofill_client.h", |
212 "test_autofill_driver.cc", | 212 "test_autofill_driver.cc", |
213 "test_autofill_driver.h", | 213 "test_autofill_driver.h", |
214 "test_autofill_external_delegate.cc", | 214 "test_autofill_external_delegate.cc", |
215 "test_autofill_external_delegate.h", | 215 "test_autofill_external_delegate.h", |
216 "test_personal_data_manager.cc", | 216 "test_personal_data_manager.cc", |
217 "test_personal_data_manager.h", | 217 "test_personal_data_manager.h", |
218 ] | 218 ] |
219 | 219 |
220 deps = [ | 220 deps = [ |
| 221 ":browser", |
221 "//base", | 222 "//base", |
222 "//base/test:test_support", | |
223 "//base:prefs", | 223 "//base:prefs", |
224 "//base:prefs_test_support", | 224 "//base:prefs_test_support", |
| 225 "//base/test:test_support", |
225 "//components/autofill/core/browser", | 226 "//components/autofill/core/browser", |
226 "//components/autofill/core/common", | 227 "//components/autofill/core/common", |
227 "//components/os_crypt", | 228 "//components/os_crypt", |
228 "//components/pref_registry", | 229 "//components/pref_registry", |
229 "//components/rappor", | 230 "//components/rappor", |
230 "//components/rappor:test_support", | 231 "//components/rappor:test_support", |
231 "//components/signin/core/browser", | 232 "//components/signin/core/browser", |
232 "//components/signin/core/common", | 233 "//components/signin/core/common", |
233 "//google_apis:test_support", | 234 "//google_apis:test_support", |
234 "//skia", | 235 "//skia", |
235 "//testing/gtest", | 236 "//testing/gtest", |
| 237 "//ui/gfx:test_support", |
236 "//ui/gfx/geometry", | 238 "//ui/gfx/geometry", |
237 "//ui/gfx:test_support", | |
238 ":browser", | |
239 ] | 239 ] |
240 } | 240 } |
241 | 241 |
242 source_set("unit_tests") { | 242 source_set("unit_tests") { |
243 testonly = true | 243 testonly = true |
244 sources = [ | 244 sources = [ |
245 "address_field_unittest.cc", | 245 "address_field_unittest.cc", |
246 "address_i18n_unittest.cc", | 246 "address_i18n_unittest.cc", |
247 "address_unittest.cc", | 247 "address_unittest.cc", |
248 "autocomplete_history_manager_unittest.cc", | 248 "autocomplete_history_manager_unittest.cc", |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
302 "//components/webdata_services:test_support", | 302 "//components/webdata_services:test_support", |
303 "//google_apis", | 303 "//google_apis", |
304 "//google_apis:test_support", | 304 "//google_apis:test_support", |
305 "//net:test_support", | 305 "//net:test_support", |
306 "//sql", | 306 "//sql", |
307 "//sync", | 307 "//sync", |
308 "//sync:test_support_sync_api", | 308 "//sync:test_support_sync_api", |
309 "//testing/gmock", | 309 "//testing/gmock", |
310 "//testing/gtest", | 310 "//testing/gtest", |
311 "//third_party/libaddressinput:util", | 311 "//third_party/libaddressinput:util", |
| 312 "//third_party/libjingle", |
312 "//third_party/libphonenumber", | 313 "//third_party/libphonenumber", |
313 "//third_party/libjingle", | |
314 "//ui/base", | 314 "//ui/base", |
315 "//url", | 315 "//url", |
316 ] | 316 ] |
317 } | 317 } |
OLD | NEW |