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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 "webdata/autofill_webdata_service_observer.h", | 135 "webdata/autofill_webdata_service_observer.h", |
136 ] | 136 ] |
137 | 137 |
138 configs += [ "//build/config:precompiled_headers" ] | 138 configs += [ "//build/config:precompiled_headers" ] |
139 | 139 |
140 deps = [ | 140 deps = [ |
141 "//base", | 141 "//base", |
142 "//base:i18n", | 142 "//base:i18n", |
143 "//base:prefs", | 143 "//base:prefs", |
144 "//components/autofill/core/common", | 144 "//components/autofill/core/common", |
| 145 "//components/data_use_measurement/core", |
145 "//components/infobars/core", | 146 "//components/infobars/core", |
146 "//components/keyed_service/core", | 147 "//components/keyed_service/core", |
147 "//components/os_crypt", | 148 "//components/os_crypt", |
148 "//components/pref_registry", | 149 "//components/pref_registry", |
149 "//components/rappor", | 150 "//components/rappor", |
150 "//components/resources", | 151 "//components/resources", |
151 "//components/signin/core/browser", | 152 "//components/signin/core/browser", |
152 "//components/signin/core/common", | 153 "//components/signin/core/common", |
153 "//components/strings", | 154 "//components/strings", |
154 "//components/sync_driver", | 155 "//components/sync_driver", |
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
286 "//sync:test_support_sync_api", | 287 "//sync:test_support_sync_api", |
287 "//testing/gmock", | 288 "//testing/gmock", |
288 "//testing/gtest", | 289 "//testing/gtest", |
289 "//third_party/libaddressinput:util", | 290 "//third_party/libaddressinput:util", |
290 "//third_party/libphonenumber", | 291 "//third_party/libphonenumber", |
291 "//third_party/libjingle", | 292 "//third_party/libjingle", |
292 "//ui/base", | 293 "//ui/base", |
293 "//url", | 294 "//url", |
294 ] | 295 ] |
295 } | 296 } |
OLD | NEW |