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

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

Issue 1396923003: Autofill: Replace "save credit card" infobar with a bubble (Views only). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Replace browser tests with unit tests. Address reviewer comments. Created 5 years, 2 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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 "server_field_types_util.cc", 103 "server_field_types_util.cc",
104 "server_field_types_util.h", 104 "server_field_types_util.h",
105 "state_names.cc", 105 "state_names.cc",
106 "state_names.h", 106 "state_names.h",
107 "suggestion.cc", 107 "suggestion.cc",
108 "suggestion.h", 108 "suggestion.h",
109 "ui/card_unmask_prompt_controller.h", 109 "ui/card_unmask_prompt_controller.h",
110 "ui/card_unmask_prompt_controller_impl.cc", 110 "ui/card_unmask_prompt_controller_impl.cc",
111 "ui/card_unmask_prompt_controller_impl.h", 111 "ui/card_unmask_prompt_controller_impl.h",
112 "ui/card_unmask_prompt_view.h", 112 "ui/card_unmask_prompt_view.h",
113 "ui/save_card_bubble_controller.h",
114 "ui/save_card_bubble_view.h",
113 "validation.cc", 115 "validation.cc",
114 "validation.h", 116 "validation.h",
115 "wallet/real_pan_wallet_client.cc", 117 "wallet/real_pan_wallet_client.cc",
116 "wallet/real_pan_wallet_client.h", 118 "wallet/real_pan_wallet_client.h",
117 "webdata/autocomplete_syncable_service.cc", 119 "webdata/autocomplete_syncable_service.cc",
118 "webdata/autocomplete_syncable_service.h", 120 "webdata/autocomplete_syncable_service.h",
119 "webdata/autofill_change.cc", 121 "webdata/autofill_change.cc",
120 "webdata/autofill_change.h", 122 "webdata/autofill_change.h",
121 "webdata/autofill_entry.cc", 123 "webdata/autofill_entry.cc",
122 "webdata/autofill_entry.h", 124 "webdata/autofill_entry.h",
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 "//sync:test_support_sync_api", 293 "//sync:test_support_sync_api",
292 "//testing/gmock", 294 "//testing/gmock",
293 "//testing/gtest", 295 "//testing/gtest",
294 "//third_party/libaddressinput:util", 296 "//third_party/libaddressinput:util",
295 "//third_party/libphonenumber", 297 "//third_party/libphonenumber",
296 "//third_party/libjingle", 298 "//third_party/libjingle",
297 "//ui/base", 299 "//ui/base",
298 "//url", 300 "//url",
299 ] 301 ]
300 } 302 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698