summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Jaewoong Jung <jungjw@google.com> 2019-04-01 22:01:26 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2019-04-01 22:01:26 +0000
commit306ab7ee28c173f17f35b04d96ff26b1d65675a3 (patch)
tree2d144f9541e04323b2dee7a87a4e76e66b73245b
parent65d4295c3c69a76dac03bbeff5bc64c7d445c720 (diff)
parent9a7e79112d5d936ace862e565b7df724906ae1de (diff)
Merge "Convert Android.mk to Android.bp" into pi-dev-plus-aosp
-rw-r--r--packages/PackageInstaller/Android.bp28
1 files changed, 28 insertions, 0 deletions
diff --git a/packages/PackageInstaller/Android.bp b/packages/PackageInstaller/Android.bp
new file mode 100644
index 000000000000..9420954748c4
--- /dev/null
+++ b/packages/PackageInstaller/Android.bp
@@ -0,0 +1,28 @@
+// Copyright (C) 2018 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.
+
+android_app {
+ name: "PackageInstaller",
+
+ srcs: ["src/**/*.java"],
+
+ certificate: "platform",
+ privileged: true,
+ platform_apis: true,
+
+ static_libs: [
+ "xz-java",
+ "androidx.leanback_leanback",
+ ],
+}