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

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

Issue 2212063002: [Autofill] Implement Autofill Assistant infobar for iOS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix ifdef 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
« no previous file with comments | « no previous file | components/autofill/core/browser/autofill_assistant.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/autofill/core/browser/BUILD.gn
diff --git a/components/autofill/core/browser/BUILD.gn b/components/autofill/core/browser/BUILD.gn
index 66433199fe1a4f66df9964546f0252999e2a4844..994095b27f97f31e03c6b9bccd67a2dd0be860d2 100644
--- a/components/autofill/core/browser/BUILD.gn
+++ b/components/autofill/core/browser/BUILD.gn
@@ -152,17 +152,12 @@ static_library("browser") {
]
}
- if (is_android) {
+ if (is_ios || is_android) {
sources += [
"autofill_assistant.cc",
"autofill_assistant.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",
"autofill_save_card_infobar_delegate_mobile.h",
"autofill_save_card_infobar_mobile.h",
@@ -330,7 +325,7 @@ source_set("unit_tests") {
"webdata/web_data_service_unittest.cc",
]
- if (is_android) {
+ if (is_ios || is_android) {
sources += [ "autofill_assistant_unittest.cc" ]
}
« no previous file with comments | « no previous file | components/autofill/core/browser/autofill_assistant.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698