Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(346)

Side by Side Diff: components/autofill/core/browser/BUILD.gn

Issue 1110833002: [autofill] Sync server card and address metadata. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Work Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 "webdata/autocomplete_syncable_service.cc", 112 "webdata/autocomplete_syncable_service.cc",
113 "webdata/autocomplete_syncable_service.h", 113 "webdata/autocomplete_syncable_service.h",
114 "webdata/autofill_change.cc", 114 "webdata/autofill_change.cc",
115 "webdata/autofill_change.h", 115 "webdata/autofill_change.h",
116 "webdata/autofill_entry.cc", 116 "webdata/autofill_entry.cc",
117 "webdata/autofill_entry.h", 117 "webdata/autofill_entry.h",
118 "webdata/autofill_profile_syncable_service.cc", 118 "webdata/autofill_profile_syncable_service.cc",
119 "webdata/autofill_profile_syncable_service.h", 119 "webdata/autofill_profile_syncable_service.h",
120 "webdata/autofill_table.cc", 120 "webdata/autofill_table.cc",
121 "webdata/autofill_table.h", 121 "webdata/autofill_table.h",
122 "webdata/autofill_wallet_metadata_syncable_service.cc",
123 "webdata/autofill_wallet_metadata_syncable_service.h",
122 "webdata/autofill_wallet_syncable_service.cc", 124 "webdata/autofill_wallet_syncable_service.cc",
123 "webdata/autofill_wallet_syncable_service.h", 125 "webdata/autofill_wallet_syncable_service.h",
124 "webdata/autofill_webdata.h", 126 "webdata/autofill_webdata.h",
125 "webdata/autofill_webdata_backend.h", 127 "webdata/autofill_webdata_backend.h",
126 "webdata/autofill_webdata_backend_impl.cc", 128 "webdata/autofill_webdata_backend_impl.cc",
127 "webdata/autofill_webdata_backend_impl.h", 129 "webdata/autofill_webdata_backend_impl.h",
128 "webdata/autofill_webdata_service.cc", 130 "webdata/autofill_webdata_service.cc",
129 "webdata/autofill_webdata_service.h", 131 "webdata/autofill_webdata_service.h",
130 "webdata/autofill_webdata_service_observer.h", 132 "webdata/autofill_webdata_service_observer.h",
131 ] 133 ]
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 "name_field_unittest.cc", 232 "name_field_unittest.cc",
231 "options_util_unittest.cc", 233 "options_util_unittest.cc",
232 "password_generator_unittest.cc", 234 "password_generator_unittest.cc",
233 "personal_data_manager_unittest.cc", 235 "personal_data_manager_unittest.cc",
234 "phone_field_unittest.cc", 236 "phone_field_unittest.cc",
235 "phone_number_i18n_unittest.cc", 237 "phone_number_i18n_unittest.cc",
236 "phone_number_unittest.cc", 238 "phone_number_unittest.cc",
237 "validation_unittest.cc", 239 "validation_unittest.cc",
238 "webdata/autofill_profile_syncable_service_unittest.cc", 240 "webdata/autofill_profile_syncable_service_unittest.cc",
239 "webdata/autofill_table_unittest.cc", 241 "webdata/autofill_table_unittest.cc",
242 "webdata/autofill_wallet_metadata_syncable_service_unittest.cc",
240 "webdata/web_data_service_unittest.cc", 243 "webdata/web_data_service_unittest.cc",
241 ] 244 ]
242 245
243 deps = [ 246 deps = [
244 ":browser", 247 ":browser",
245 ":test_support", 248 ":test_support",
246 "//base", 249 "//base",
247 "//base:prefs", 250 "//base:prefs",
248 "//base/test:test_support", 251 "//base/test:test_support",
249 "//components/autofill/core/common", 252 "//components/autofill/core/common",
250 "//components/os_crypt", 253 "//components/os_crypt",
251 "//components/rappor:test_support", 254 "//components/rappor:test_support",
252 "//components/resources", 255 "//components/resources",
253 "//components/signin/core/browser:test_support", 256 "//components/signin/core/browser:test_support",
254 "//components/strings", 257 "//components/strings",
255 "//components/sync_driver", 258 "//components/sync_driver",
256 "//components/webdata/common", 259 "//components/webdata/common",
257 "//net:test_support", 260 "//net:test_support",
258 "//sql", 261 "//sql",
259 "//sync", 262 "//sync",
260 "//sync:test_support_sync_api", 263 "//sync:test_support_sync_api",
261 "//testing/gmock", 264 "//testing/gmock",
262 "//testing/gtest", 265 "//testing/gtest",
263 "//third_party/libphonenumber", 266 "//third_party/libphonenumber",
264 "//third_party/libjingle", 267 "//third_party/libjingle",
265 "//ui/base", 268 "//ui/base",
266 "//url", 269 "//url",
267 ] 270 ]
268 } 271 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698