blob: 87f65a92200479bb7716ddd72561d5a0608be928 [file] [log] [blame]
Terry Wangd8e32152019-11-20 16:48:48 -08001// 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
Bob Badourd5949582021-02-23 13:18:34 -080015package {
16 // See: http://go/android-license-faq
17 // A large-scale-change added 'default_applicable_licenses' to import
18 // all of the 'license_kinds' from "frameworks_base_license"
19 // to get the below license kinds:
20 // SPDX-license-identifier-Apache-2.0
21 default_applicable_licenses: ["frameworks_base_license"],
22}
23
Terry Wangd8e32152019-11-20 16:48:48 -080024apex {
25 name: "com.android.appsearch",
Terry Wangd8e32152019-11-20 16:48:48 -080026 manifest: "apex_manifest.json",
Alexander Dorokhine04a05a82019-12-17 10:41:21 -080027 java_libs: [
28 "framework-appsearch",
29 "service-appsearch",
30 ],
Terry Wangd8e32152019-11-20 16:48:48 -080031 key: "com.android.appsearch.key",
32 certificate: ":com.android.appsearch.certificate",
Mathew Inwoodd7bbb7a2021-02-23 14:00:23 +000033 updatable: false,
Terry Wangd8e32152019-11-20 16:48:48 -080034}
35
36apex_key {
37 name: "com.android.appsearch.key",
38 public_key: "com.android.appsearch.avbpubkey",
39 private_key: "com.android.appsearch.pem",
40}
41
42android_app_certificate {
43 name: "com.android.appsearch.certificate",
44 // This will use com.android.appsearch.x509.pem (the cert) and
45 // com.android.appsearch.pk8 (the private key)
46 certificate: "com.android.appsearch",
47}