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

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

Issue 925593006: Pass all info to account chooser infobar. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@java_cpp_enum
Patch Set: Created 5 years, 10 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/common/BUILD.gn
diff --git a/components/autofill/core/common/BUILD.gn b/components/autofill/core/common/BUILD.gn
index e2f7e68ec437ee578c2aef5c0cf0d1defed6996f..e56d14a49dd95011107a3cd2231d0ff714c186e3 100644
--- a/components/autofill/core/common/BUILD.gn
+++ b/components/autofill/core/common/BUILD.gn
@@ -41,7 +41,7 @@ static_library("common") {
]
if (is_android) {
- # deps += [ 'autofill_jni_headers' ] TODO(GYP)
+ deps += [ ":autofill_jni_headers" ]
}
}
@@ -63,3 +63,13 @@ source_set("unit_tests") {
"//url",
]
}
+
+if (is_android) {
+ import("//build/config/android/rules.gni")
+ generate_jni("autofill_jni_headers") {
+ sources = [
+ "../common/android/java/src/org/chromium/components/autofill/core/common/Credential.java",
+ ]
+ jni_package = "autofill_core_common"
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698