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

Unified Diff: content/public/android/BUILD.gn

Issue 2507223002: Implement IsReadyToPay handling (Closed)
Patch Set: Fix oneway usage Created 3 years, 11 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: content/public/android/BUILD.gn
diff --git a/content/public/android/BUILD.gn b/content/public/android/BUILD.gn
index 08fc239f0e2144bcad1866bd07c03a150bcc1906..22b4f1aa316611a4b8edd91f5235ca01ab13dbb5 100644
--- a/content/public/android/BUILD.gn
+++ b/content/public/android/BUILD.gn
@@ -14,6 +14,14 @@ android_aidl("common_aidl") {
]
}
+android_aidl("is_ready_to_pay_service_aidl") {
+ interface_file = "java/src/org/chromium/payments_common.aidl"
+ sources = [
+ "java/src/org/chromium/IsReadyToPayService.aidl",
+ "java/src/org/chromium/IsReadyToPayServiceCallback.aidl",
+ ]
+}
+
android_resources("content_java_resources") {
deps = [
":content_strings_grd",
@@ -61,6 +69,7 @@ android_library("content_java") {
srcjar_deps = [
":common_aidl",
+ ":is_ready_to_pay_service_aidl",
":content_public_android_java_enums_srcjar",
"//content/browser/accessibility:content_browser_accessibility_java_enums_srcjar",
"//ui/touch_selection:ui_touch_selection_enums_srcjar",

Powered by Google App Engine
This is Rietveld 408576698