xref: /aosp_15_r20/system/secretkeeper/Android.bp (revision 3f8e9d82f4020c68ad19a99fc5fdc1fc90b79379)
1*3f8e9d82SAndroid Build Coastguard Worker// Copyright 2022, The Android Open Source Project
2*3f8e9d82SAndroid Build Coastguard Worker//
3*3f8e9d82SAndroid Build Coastguard Worker// Licensed under the Apache License, Version 2.0 (the "License");
4*3f8e9d82SAndroid Build Coastguard Worker// you may not use this file except in compliance with the License.
5*3f8e9d82SAndroid Build Coastguard Worker// You may obtain a copy of the License at
6*3f8e9d82SAndroid Build Coastguard Worker//
7*3f8e9d82SAndroid Build Coastguard Worker//     http://www.apache.org/licenses/LICENSE-2.0
8*3f8e9d82SAndroid Build Coastguard Worker//
9*3f8e9d82SAndroid Build Coastguard Worker// Unless required by applicable law or agreed to in writing, software
10*3f8e9d82SAndroid Build Coastguard Worker// distributed under the License is distributed on an "AS IS" BASIS,
11*3f8e9d82SAndroid Build Coastguard Worker// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12*3f8e9d82SAndroid Build Coastguard Worker// See the License for the specific language governing permissions and
13*3f8e9d82SAndroid Build Coastguard Worker// limitations under the License.
14*3f8e9d82SAndroid Build Coastguard Worker
15*3f8e9d82SAndroid Build Coastguard Workerpackage {
16*3f8e9d82SAndroid Build Coastguard Worker    default_team: "trendy_team_virtualization",
17*3f8e9d82SAndroid Build Coastguard Worker    default_applicable_licenses: ["system_secretkeeper_license"],
18*3f8e9d82SAndroid Build Coastguard Worker}
19*3f8e9d82SAndroid Build Coastguard Worker
20*3f8e9d82SAndroid Build Coastguard Workerlicense {
21*3f8e9d82SAndroid Build Coastguard Worker    name: "system_secretkeeper_license",
22*3f8e9d82SAndroid Build Coastguard Worker    visibility: [":__subpackages__"],
23*3f8e9d82SAndroid Build Coastguard Worker    license_kinds: [
24*3f8e9d82SAndroid Build Coastguard Worker        "SPDX-license-identifier-Apache-2.0",
25*3f8e9d82SAndroid Build Coastguard Worker    ],
26*3f8e9d82SAndroid Build Coastguard Worker    license_text: [
27*3f8e9d82SAndroid Build Coastguard Worker        "NOTICE",
28*3f8e9d82SAndroid Build Coastguard Worker    ],
29*3f8e9d82SAndroid Build Coastguard Worker}
30*3f8e9d82SAndroid Build Coastguard Worker
31*3f8e9d82SAndroid Build Coastguard Workersubdirs = ["*"]
32*3f8e9d82SAndroid Build Coastguard Worker
33*3f8e9d82SAndroid Build Coastguard Workerdirgroup {
34*3f8e9d82SAndroid Build Coastguard Worker    name: "trusty_dirgroup_system_secretkeeper",
35*3f8e9d82SAndroid Build Coastguard Worker    dirs: ["."],
36*3f8e9d82SAndroid Build Coastguard Worker    visibility: ["//trusty/vendor/google/aosp/scripts"],
37*3f8e9d82SAndroid Build Coastguard Worker}
38