blob: d76a40e9e26d6a8160b3221901dfa5e7c7897994 [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",
17
18 manifest: "apex_manifest.json",
19
20 // optional. if unspecified, a default one is auto-generated
21 //androidManifest: "AndroidManifest.xml",
22
23 // libc.so and libcutils.so are included in the apex
24 // native_shared_libs: ["libc", "libcutils"],
25 // binaries: ["vold"],
26 // java_libs: ["core-all"],
27 // prebuilts: ["my_prebuilt"],
28
29 compile_multilib: "both",
30
31 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}