blob: 84fdbeebe80250772e0d43976b30c0f2e606cdf1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Copyright 2022 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/config/android/rules.gni")
android_aidl("webapk_install_aidl") {
import_include = [ "java/src" ]
sources = [
"java/src/org/chromium/components/webapk_install/IOnFinishInstallCallback.aidl",
"java/src/org/chromium/components/webapk_install/IWebApkInstallCoordinatorService.aidl",
]
}
android_library("webapk_install_java") {
srcjar_deps = [ ":webapk_install_aidl" ]
}
|