blob: 8327f31e4645c4d7e091ed00a2c7de353054e559 [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",
19
Muhammad Qureshi564b3642019-08-16 16:32:29 -070020
Howard Ro92e1c6e2019-12-10 19:04:44 -080021}
22
23apex_defaults {
Muhammad Qureshi564b3642019-08-16 16:32:29 -070024 // libc.so and libcutils.so are included in the apex
25 // native_shared_libs: ["libc", "libcutils"],
26 // binaries: ["vold"],
27 // java_libs: ["core-all"],
28 // prebuilts: ["my_prebuilt"],
Howard Ro92e1c6e2019-12-10 19:04:44 -080029 name: "com.android.os.statsd-defaults",
Muhammad Qureshi564b3642019-08-16 16:32:29 -070030 key: "com.android.os.statsd.key",
31 certificate: ":com.android.os.statsd.certificate",
32}
33
34apex_key {
35 name: "com.android.os.statsd.key",
36 public_key: "com.android.os.statsd.avbpubkey",
37 private_key: "com.android.os.statsd.pem",
38}
39
40android_app_certificate {
41 name: "com.android.os.statsd.certificate",
42 // This will use com.android.os.statsd.x509.pem (the cert) and
43 // com.android.os.statsd.pk8 (the private key)
44 certificate: "com.android.os.statsd",
45}