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

Unified Diff: components/autofill/core/browser/BUILD.gn

Issue 2026353002: [Autofill] Credit Card Assist Infobar (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removed CreateCreditCardFillingInfoBar from interface Created 4 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: components/autofill/core/browser/BUILD.gn
diff --git a/components/autofill/core/browser/BUILD.gn b/components/autofill/core/browser/BUILD.gn
index b835eaa9f4fd780433fbf0721e53f2c0b40b9934..d0cd33570754ace3ebf01f9bc515b310d228d7bd 100644
--- a/components/autofill/core/browser/BUILD.gn
+++ b/components/autofill/core/browser/BUILD.gn
@@ -152,6 +152,15 @@ static_library("browser") {
]
}
+ if (is_android) {
+ sources += [
+ "assist_manager.cc",
+ "assist_manager.h",
+ "autofill_credit_card_filling_infobar_delegate_mobile.cc",
+ "autofill_credit_card_filling_infobar_delegate_mobile.h",
+ ]
+ }
+
if (is_ios || is_android) {
sources += [
"autofill_save_card_infobar_delegate_mobile.cc",
@@ -321,6 +330,10 @@ source_set("unit_tests") {
"webdata/web_data_service_unittest.cc",
]
+ if (is_android) {
+ sources += [ "assist_manager_unittest.cc" ]
+ }
+
deps = [
":browser",
":test_support",

Powered by Google App Engine
This is Rietveld 408576698