| 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..6c38bf8d052641018e72b03a54df04acd7b1c550 100644
|
| --- a/chrome/android/webapk/libs/common/BUILD.gn
|
| +++ b/chrome/android/webapk/libs/common/BUILD.gn
|
| @@ -7,7 +7,18 @@ import("//build/config/android/rules.gni")
|
| android_library("common_java") {
|
| java_files = [
|
| "src/org/chromium/webapk/lib/common/WebApkConstants.java",
|
| + "src/org/chromium/webapk/lib/common/WebApkHelper.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",
|
| + ]
|
| }
|
|
|