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

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: addressed more comments Created 4 years, 5 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..de4ae7b57b9deb5d671a745dadf3abbfbf05e9ef 100644
--- a/components/autofill/core/browser/BUILD.gn
+++ b/components/autofill/core/browser/BUILD.gn
@@ -152,6 +152,16 @@ static_library("browser") {
]
}
+ if (is_android) {
+ sources += [
+ "assist_manager.cc",
+ "assist_manager.h",
+ "autofill_assist_infobar_delegate_mobile.cc",
+ "autofill_assist_infobar_delegate_mobile.h",
+ "autofill_assist_infobar_mobile.h",
+ ]
+ }
+
if (is_ios || is_android) {
sources += [
"autofill_save_card_infobar_delegate_mobile.cc",
@@ -321,6 +331,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