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 |
139 deps = [ | 141 deps = [ |
140 "//base", | 142 "//base", |
141 "//base:i18n", | 143 "//base:i18n", |
142 "//base:prefs", | 144 "//base:prefs", |
143 "//components/autofill/core/common", | 145 "//components/autofill/core/common", |
144 "//components/infobars/core", | 146 "//components/infobars/core", |
145 "//components/keyed_service/core", | 147 "//components/keyed_service/core", |
146 "//components/os_crypt", | 148 "//components/os_crypt", |
147 "//components/pref_registry", | 149 "//components/pref_registry", |
148 "//components/rappor", | 150 "//components/rappor", |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
281 "//sync", | 283 "//sync", |
282 "//sync:test_support_sync_api", | 284 "//sync:test_support_sync_api", |
283 "//testing/gmock", | 285 "//testing/gmock", |
284 "//testing/gtest", | 286 "//testing/gtest", |
285 "//third_party/libphonenumber", | 287 "//third_party/libphonenumber", |
286 "//third_party/libjingle", | 288 "//third_party/libjingle", |
287 "//ui/base", | 289 "//ui/base", |
288 "//url", | 290 "//url", |
289 ] | 291 ] |
290 } | 292 } |
OLD | NEW |