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

Unified Diff: components/autofill/content/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/content/browser/BUILD.gn
diff --git a/components/autofill/content/browser/BUILD.gn b/components/autofill/content/browser/BUILD.gn
index 5fa6ea67efdb9b7f86ea900db9a76ec5f52b2c66..f6e5d4cac776fadf259ddad79edac0d8b33d0b3c 100644
--- a/components/autofill/content/browser/BUILD.gn
+++ b/components/autofill/content/browser/BUILD.gn
@@ -6,6 +6,8 @@ import("//third_party/protobuf/proto_library.gni")
static_library("browser") {
sources = [
+ "autofill_provider_android.cc",
+ "autofill_provider_android.h",
"content_autofill_driver.cc",
"content_autofill_driver.h",
"content_autofill_driver_factory.cc",
@@ -50,6 +52,10 @@ static_library("browser") {
"//ui/gfx/geometry",
"//url",
]
+
+ if (is_android) {
+ deps += [ "//components/autofill/android:jni_headers" ]
+ }
}
proto_library("risk_proto") {

Powered by Google App Engine
This is Rietveld 408576698