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

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

Issue 2839023003: WebView autofill implementation (Closed)
Patch Set: fix coordinates Created 3 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 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 87a22f6efa1497047d88bec9302fced6a1423c9f..75a51b8ce234186a20ca4776786c883be772b603 100644
--- a/components/autofill/core/browser/BUILD.gn
+++ b/components/autofill/core/browser/BUILD.gn
@@ -50,6 +50,8 @@ static_library("browser") {
"autofill_profile.h",
"autofill_profile_comparator.cc",
"autofill_profile_comparator.h",
+ "autofill_provider.cc",
+ "autofill_provider.h",
"autofill_regex_constants.cc",
"autofill_regex_constants.h",
"autofill_scanner.cc",
@@ -82,8 +84,12 @@ static_library("browser") {
"field_candidates.cc",
"field_candidates.h",
"field_types.h",
+ "form_data_android.cc",
+ "form_data_android.h",
"form_field.cc",
"form_field.h",
+ "form_field_data_android.cc",
+ "form_field_data_android.h",
"form_group.cc",
"form_group.h",
"form_structure.cc",
@@ -184,9 +190,7 @@ static_library("browser") {
}
if (!is_android) {
- sources += [
- "ui/save_card_bubble_controller.h",
- ]
+ sources += [ "ui/save_card_bubble_controller.h" ]
}
configs += [ "//build/config:precompiled_headers" ]
@@ -231,6 +235,10 @@ static_library("browser") {
"//url",
]
+ if (is_android) {
+ deps += [ "//components/autofill/android:jni_headers" ]
+ }
+
configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
if (is_mac) {

Powered by Google App Engine
This is Rietveld 408576698