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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 "test_autofill_client.cc", | 210 "test_autofill_client.cc", |
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 public_deps = [ |
| 221 ":browser", |
| 222 ] |
| 223 |
220 deps = [ | 224 deps = [ |
221 ":browser", | |
222 "//base", | 225 "//base", |
223 "//base:prefs", | 226 "//base:prefs", |
224 "//base:prefs_test_support", | 227 "//base:prefs_test_support", |
225 "//base/test:test_support", | 228 "//base/test:test_support", |
226 "//components/autofill/core/browser", | 229 "//components/autofill/core/browser", |
227 "//components/autofill/core/common", | 230 "//components/autofill/core/common", |
228 "//components/os_crypt", | 231 "//components/os_crypt", |
229 "//components/pref_registry", | 232 "//components/pref_registry", |
230 "//components/rappor", | 233 "//components/rappor", |
231 "//components/rappor:test_support", | 234 "//components/rappor:test_support", |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
307 "//sync", | 310 "//sync", |
308 "//sync:test_support_sync_api", | 311 "//sync:test_support_sync_api", |
309 "//testing/gmock", | 312 "//testing/gmock", |
310 "//testing/gtest", | 313 "//testing/gtest", |
311 "//third_party/libaddressinput:util", | 314 "//third_party/libaddressinput:util", |
312 "//third_party/libphonenumber", | 315 "//third_party/libphonenumber", |
313 "//ui/base", | 316 "//ui/base", |
314 "//url", | 317 "//url", |
315 ] | 318 ] |
316 } | 319 } |
OLD | NEW |