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

Unified Diff: chrome/android/webapk/libs/common/BUILD.gn

Issue 2974573002: Refactor WebApkServiceConnectionManager. (Closed)
Patch Set: Call the callback on UI thread if bindService() fails. Created 3 years, 5 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: chrome/android/webapk/libs/common/BUILD.gn
diff --git a/chrome/android/webapk/libs/common/BUILD.gn b/chrome/android/webapk/libs/common/BUILD.gn
index 812295cf55cb7101b841e30e796fe0700b96240a..74a093e7ff961ea7aab61c88c61fd74ae77f4180 100644
--- a/chrome/android/webapk/libs/common/BUILD.gn
+++ b/chrome/android/webapk/libs/common/BUILD.gn
@@ -10,4 +10,14 @@ android_library("common_java") {
"src/org/chromium/webapk/lib/common/WebApkMetaDataKeys.java",
"src/org/chromium/webapk/lib/common/WebApkVersionUtils.java",
]
+ srcjar_deps = [ "//chrome/android/webapk/libs/common:identity_service_aidl" ]
+}
+
+android_aidl("identity_service_aidl") {
+ import_include = [ "src/org/chromium/webapk/lib/common/IdentityService" ]
+ interface_file =
+ "src/org/chromium/webapk/lib/common/IdentityService/common.aidl"
+ sources = [
+ "src/org/chromium/webapk/lib/common/IdentityService/IIdentityService.aidl",
+ ]
}

Powered by Google App Engine
This is Rietveld 408576698