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

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

Issue 1138653003: Move card unmask interfaces and controller into the autofill component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Edit factory function comment 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 "phone_number.h", 98 "phone_number.h",
99 "phone_number_i18n.cc", 99 "phone_number_i18n.cc",
100 "phone_number_i18n.h", 100 "phone_number_i18n.h",
101 "popup_item_ids.h", 101 "popup_item_ids.h",
102 "server_field_types_util.cc", 102 "server_field_types_util.cc",
103 "server_field_types_util.h", 103 "server_field_types_util.h",
104 "state_names.cc", 104 "state_names.cc",
105 "state_names.h", 105 "state_names.h",
106 "suggestion.cc", 106 "suggestion.cc",
107 "suggestion.h", 107 "suggestion.h",
108 "ui/card_unmask_prompt_controller.h",
109 "ui/card_unmask_prompt_controller_impl.cc",
110 "ui/card_unmask_prompt_controller_impl.h",
111 "ui/card_unmask_prompt_view.h",
108 "validation.cc", 112 "validation.cc",
109 "validation.h", 113 "validation.h",
110 "wallet/real_pan_wallet_client.cc", 114 "wallet/real_pan_wallet_client.cc",
111 "wallet/real_pan_wallet_client.h", 115 "wallet/real_pan_wallet_client.h",
112 "webdata/autocomplete_syncable_service.cc", 116 "webdata/autocomplete_syncable_service.cc",
113 "webdata/autocomplete_syncable_service.h", 117 "webdata/autocomplete_syncable_service.h",
114 "webdata/autofill_change.cc", 118 "webdata/autofill_change.cc",
115 "webdata/autofill_change.h", 119 "webdata/autofill_change.h",
116 "webdata/autofill_entry.cc", 120 "webdata/autofill_entry.cc",
117 "webdata/autofill_entry.h", 121 "webdata/autofill_entry.h",
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 "//sync", 261 "//sync",
258 "//sync:test_support_sync_api", 262 "//sync:test_support_sync_api",
259 "//testing/gmock", 263 "//testing/gmock",
260 "//testing/gtest", 264 "//testing/gtest",
261 "//third_party/libphonenumber", 265 "//third_party/libphonenumber",
262 "//third_party/libjingle", 266 "//third_party/libjingle",
263 "//ui/base", 267 "//ui/base",
264 "//url", 268 "//url",
265 ] 269 ]
266 } 270 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698