blob: 09ca1d257460e5890a1f1d7425bf32a52a8bef64 [file] [log] [blame]
Muhammad Qureshi564b3642019-08-16 16:32:29 -07001// Copyright (C) 2019 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15apex {
16 name: "com.android.os.statsd",
Howard Ro92e1c6e2019-12-10 19:04:44 -080017 defaults: ["com.android.os.statsd-defaults"],
Muhammad Qureshi564b3642019-08-16 16:32:29 -070018 manifest: "apex_manifest.json",
Howard Ro92e1c6e2019-12-10 19:04:44 -080019}
20
21apex_defaults {
Muhammad Qureshi564b3642019-08-16 16:32:29 -070022 // libc.so and libcutils.so are included in the apex
23 // native_shared_libs: ["libc", "libcutils"],
24 // binaries: ["vold"],
Muhammad Qureshiff02d482019-12-12 11:03:55 -080025 java_libs: [
26 "framework-statsd",
27 "service-statsd",
28 ],
Muhammad Qureshi564b3642019-08-16 16:32:29 -070029 // prebuilts: ["my_prebuilt"],
Howard Ro92e1c6e2019-12-10 19:04:44 -080030 name: "com.android.os.statsd-defaults",
Muhammad Qureshi564b3642019-08-16 16:32:29 -070031 key: "com.android.os.statsd.key",
32 certificate: ":com.android.os.statsd.certificate",
33}
34
35apex_key {
36 name: "com.android.os.statsd.key",
37 public_key: "com.android.os.statsd.avbpubkey",
38 private_key: "com.android.os.statsd.pem",
39}
40
41android_app_certificate {
42 name: "com.android.os.statsd.certificate",
43 // This will use com.android.os.statsd.x509.pem (the cert) and
44 // com.android.os.statsd.pk8 (the private key)
45 certificate: "com.android.os.statsd",
46}