| 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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 "webdata/autofill_wallet_syncable_service.h", | 129 "webdata/autofill_wallet_syncable_service.h", |
| 130 "webdata/autofill_webdata.h", | 130 "webdata/autofill_webdata.h", |
| 131 "webdata/autofill_webdata_backend.h", | 131 "webdata/autofill_webdata_backend.h", |
| 132 "webdata/autofill_webdata_backend_impl.cc", | 132 "webdata/autofill_webdata_backend_impl.cc", |
| 133 "webdata/autofill_webdata_backend_impl.h", | 133 "webdata/autofill_webdata_backend_impl.h", |
| 134 "webdata/autofill_webdata_service.cc", | 134 "webdata/autofill_webdata_service.cc", |
| 135 "webdata/autofill_webdata_service.h", | 135 "webdata/autofill_webdata_service.h", |
| 136 "webdata/autofill_webdata_service_observer.h", | 136 "webdata/autofill_webdata_service_observer.h", |
| 137 ] | 137 ] |
| 138 | 138 |
| 139 configs += [ "//build/config:precompiled_headers" ] | |
| 140 | |
| 141 deps = [ | 139 deps = [ |
| 142 "//base", | 140 "//base", |
| 143 "//base:i18n", | 141 "//base:i18n", |
| 144 "//base:prefs", | 142 "//base:prefs", |
| 145 "//components/autofill/core/common", | 143 "//components/autofill/core/common", |
| 146 "//components/infobars/core", | 144 "//components/infobars/core", |
| 147 "//components/keyed_service/core", | 145 "//components/keyed_service/core", |
| 148 "//components/os_crypt", | 146 "//components/os_crypt", |
| 149 "//components/pref_registry", | 147 "//components/pref_registry", |
| 150 "//components/rappor", | 148 "//components/rappor", |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 283 "//sync", | 281 "//sync", |
| 284 "//sync:test_support_sync_api", | 282 "//sync:test_support_sync_api", |
| 285 "//testing/gmock", | 283 "//testing/gmock", |
| 286 "//testing/gtest", | 284 "//testing/gtest", |
| 287 "//third_party/libphonenumber", | 285 "//third_party/libphonenumber", |
| 288 "//third_party/libjingle", | 286 "//third_party/libjingle", |
| 289 "//ui/base", | 287 "//ui/base", |
| 290 "//url", | 288 "//url", |
| 291 ] | 289 ] |
| 292 } | 290 } |
| OLD | NEW |