blob: 12d6b8687eb1d4c343d29924ed99a6f8c2088443 [file] [log] [blame]
Anton Hansson55592452019-11-28 11:38:13 +00001// 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.sdkext",
17 manifest: "manifest.json",
Anton Hanssona82f1612019-11-28 17:15:11 +000018 binaries: [ "derive_sdk" ],
Anton Hansson4ec07fa2019-11-08 15:18:04 +000019 java_libs: [ "framework-sdkext" ],
Anton Hanssona82f1612019-11-28 17:15:11 +000020 prebuilts: [ "com.android.sdkext.ldconfig" ],
Anton Hansson55592452019-11-28 11:38:13 +000021 key: "com.android.sdkext.key",
22 certificate: ":com.android.sdkext.certificate",
23}
24
25apex_key {
26 name: "com.android.sdkext.key",
27 public_key: "com.android.sdkext.avbpubkey",
28 private_key: "com.android.sdkext.pem",
29}
30
31android_app_certificate {
32 name: "com.android.sdkext.certificate",
33 certificate: "com.android.sdkext",
34}
Anton Hanssona82f1612019-11-28 17:15:11 +000035
36prebuilt_etc {
37 name: "com.android.sdkext.ldconfig",
38 src: "ld.config.txt",
39 filename: "ld.config.txt",
40 installable: false,
41}