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

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

Issue 2974573002: Refactor WebApkServiceConnectionManager. (Closed)
Patch Set: pkotwicz@‘s comments. 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..9d279cd200528eae607dda26721273ba3ee9ddef 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/identity_service" ]
+ interface_file =
+ "src/org/chromium/webapk/lib/common/identity_service/common.aidl"
+ sources = [
+ "src/org/chromium/webapk/lib/common/identity_service/IIdentityService.aidl",
+ ]
}

Powered by Google App Engine
This is Rietveld 408576698