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

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: Class comment and one more expectation in test. Created 5 years, 6 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
« no previous file with comments | « components/autofill.gypi ('k') | components/autofill/core/browser/webdata/autofill_change.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 "webdata/autocomplete_syncable_service.cc", 116 "webdata/autocomplete_syncable_service.cc",
117 "webdata/autocomplete_syncable_service.h", 117 "webdata/autocomplete_syncable_service.h",
118 "webdata/autofill_change.cc", 118 "webdata/autofill_change.cc",
119 "webdata/autofill_change.h", 119 "webdata/autofill_change.h",
120 "webdata/autofill_entry.cc", 120 "webdata/autofill_entry.cc",
121 "webdata/autofill_entry.h", 121 "webdata/autofill_entry.h",
122 "webdata/autofill_profile_syncable_service.cc", 122 "webdata/autofill_profile_syncable_service.cc",
123 "webdata/autofill_profile_syncable_service.h", 123 "webdata/autofill_profile_syncable_service.h",
124 "webdata/autofill_table.cc", 124 "webdata/autofill_table.cc",
125 "webdata/autofill_table.h", 125 "webdata/autofill_table.h",
126 "webdata/autofill_wallet_metadata_syncable_service.cc",
127 "webdata/autofill_wallet_metadata_syncable_service.h",
126 "webdata/autofill_wallet_syncable_service.cc", 128 "webdata/autofill_wallet_syncable_service.cc",
127 "webdata/autofill_wallet_syncable_service.h", 129 "webdata/autofill_wallet_syncable_service.h",
128 "webdata/autofill_webdata.h", 130 "webdata/autofill_webdata.h",
129 "webdata/autofill_webdata_backend.h", 131 "webdata/autofill_webdata_backend.h",
130 "webdata/autofill_webdata_backend_impl.cc", 132 "webdata/autofill_webdata_backend_impl.cc",
131 "webdata/autofill_webdata_backend_impl.h", 133 "webdata/autofill_webdata_backend_impl.h",
132 "webdata/autofill_webdata_service.cc", 134 "webdata/autofill_webdata_service.cc",
133 "webdata/autofill_webdata_service.h", 135 "webdata/autofill_webdata_service.h",
134 "webdata/autofill_webdata_service_observer.h", 136 "webdata/autofill_webdata_service_observer.h",
135 ] 137 ]
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 "name_field_unittest.cc", 236 "name_field_unittest.cc",
235 "options_util_unittest.cc", 237 "options_util_unittest.cc",
236 "password_generator_unittest.cc", 238 "password_generator_unittest.cc",
237 "personal_data_manager_unittest.cc", 239 "personal_data_manager_unittest.cc",
238 "phone_field_unittest.cc", 240 "phone_field_unittest.cc",
239 "phone_number_i18n_unittest.cc", 241 "phone_number_i18n_unittest.cc",
240 "phone_number_unittest.cc", 242 "phone_number_unittest.cc",
241 "validation_unittest.cc", 243 "validation_unittest.cc",
242 "webdata/autofill_profile_syncable_service_unittest.cc", 244 "webdata/autofill_profile_syncable_service_unittest.cc",
243 "webdata/autofill_table_unittest.cc", 245 "webdata/autofill_table_unittest.cc",
246 "webdata/autofill_wallet_metadata_syncable_service_unittest.cc",
244 "webdata/web_data_service_unittest.cc", 247 "webdata/web_data_service_unittest.cc",
245 ] 248 ]
246 249
247 deps = [ 250 deps = [
248 ":browser", 251 ":browser",
249 ":test_support", 252 ":test_support",
250 "//base", 253 "//base",
251 "//base:prefs", 254 "//base:prefs",
252 "//base/test:test_support", 255 "//base/test:test_support",
253 "//components/autofill/core/common", 256 "//components/autofill/core/common",
254 "//components/os_crypt", 257 "//components/os_crypt",
255 "//components/rappor:test_support", 258 "//components/rappor:test_support",
256 "//components/resources", 259 "//components/resources",
257 "//components/signin/core/browser:test_support", 260 "//components/signin/core/browser:test_support",
258 "//components/strings", 261 "//components/strings",
259 "//components/sync_driver", 262 "//components/sync_driver",
260 "//components/webdata/common", 263 "//components/webdata/common",
261 "//net:test_support", 264 "//net:test_support",
262 "//sql", 265 "//sql",
263 "//sync", 266 "//sync",
264 "//sync:test_support_sync_api", 267 "//sync:test_support_sync_api",
265 "//testing/gmock", 268 "//testing/gmock",
266 "//testing/gtest", 269 "//testing/gtest",
267 "//third_party/libphonenumber", 270 "//third_party/libphonenumber",
268 "//third_party/libjingle", 271 "//third_party/libjingle",
269 "//ui/base", 272 "//ui/base",
270 "//url", 273 "//url",
271 ] 274 ]
272 } 275 }
OLDNEW
« no previous file with comments | « components/autofill.gypi ('k') | components/autofill/core/browser/webdata/autofill_change.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698