summaryrefslogtreecommitdiff
path: root/service/Android.bp
diff options
context:
space:
mode:
authorJayachandran C <jayachandranc@google.com>2021-12-24 02:06:52 -0800
committerJayachandran C <jayachandranc@google.com>2022-03-04 13:35:48 -0800
commit816f2638a9e86a01b91284a8dc0ca5c026ae12a5 (patch)
tree0bd8e81dc70f6b13548d14016e3ebf52b8d00354 /service/Android.bp
parent09f9a3a928c1b0821f253c16abec7f36ed4e5852 (diff)
downloadImsMedia-816f2638a9e86a01b91284a8dc0ca5c026ae12a5.tar.gz
Initial implementation of ImsMedia APIs and services
Bug: 203240638 Test: atest Change-Id: I3f980e3146f679722636e709a51182f232dcbd2f
Diffstat (limited to 'service/Android.bp')
-rw-r--r--service/Android.bp52
1 files changed, 52 insertions, 0 deletions
diff --git a/service/Android.bp b/service/Android.bp
new file mode 100644
index 00000000..fd67dd11
--- /dev/null
+++ b/service/Android.bp
@@ -0,0 +1,52 @@
+//
+// Copyright (C) 2022 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package {
+ default_applicable_licenses: ["Android-Apache-2.0"],
+}
+
+android_library {
+ name: "imsmedia-core",
+ srcs: [
+ "src/**/*.java",
+ "src/**/*.aidl",
+ ],
+ aidl: {
+ include_dirs: [
+ "packages/modules/ImsMedia/framework/src",
+ ],
+ },
+ libs: [
+ "android-support-annotations",
+ ],
+ static_libs: [
+ "android.hardware.radio.ims.media-V1-java",
+ // TODO: move this to libs after API review
+ "android.telephony.imsmedia",
+ ],
+ platform_apis: true,
+}
+
+android_app {
+ name: "com.android.telephony.imsmedia",
+ manifest: "AndroidManifest.xml",
+ static_libs: [
+ "imsmedia-core",
+ ],
+
+ privileged: true,
+ certificate: "platform",
+ platform_apis: true,
+}