blob: 04975edc73172b27a995f2bc09987bc99c7dcc6a [file] [log] [blame]
Hai Zhang36fd6402020-01-14 21:56:34 -08001// Copyright (C) 2020 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 Badour2f0b2bb2021-02-03 20:35:08 -080015package {
16 default_applicable_licenses: ["Android-Apache-2.0"],
17}
18
Hai Zhang36fd6402020-01-14 21:56:34 -080019filegroup {
20 name: "framework-permission-sources",
21 srcs: [
22 "java/**/*.java",
23 "java/**/*.aidl",
24 ],
25 path: "java",
Anton Hanssond6b93552020-12-15 18:28:20 +000026 visibility: ["//frameworks/base"],
Hai Zhang36fd6402020-01-14 21:56:34 -080027}
28
Paul Duffinc8ed83f2020-05-19 20:53:34 +010029java_sdk_library {
Hai Zhang36fd6402020-01-14 21:56:34 -080030 name: "framework-permission",
Paul Duffinc8ed83f2020-05-19 20:53:34 +010031 defaults: ["framework-module-defaults"],
Paul Duffin85f16af2020-05-31 11:32:06 +010032
Paul Duffin85f16af2020-05-31 11:32:06 +010033 // Restrict access to implementation library.
Baligh Uddin9ba6ee72021-01-26 13:50:56 +000034 impl_library_visibility: [
35 "//frameworks/base/apex/permission:__subpackages__",
36 "//packages/modules/Permission:__subpackages__",
37 ],
Paul Duffin85f16af2020-05-31 11:32:06 +010038
Hai Zhang36fd6402020-01-14 21:56:34 -080039 srcs: [
40 ":framework-permission-sources",
41 ],
Paul Duffinc8ed83f2020-05-19 20:53:34 +010042
Hai Zhang36fd6402020-01-14 21:56:34 -080043 apex_available: [
44 "com.android.permission",
45 "test_com.android.permission",
46 ],
Hai Zhang748a31d2021-01-21 12:48:43 -080047 min_sdk_version: "30",
Vladimir Marko53133e72020-03-25 12:27:18 +000048 permitted_packages: [
49 "android.permission",
50 "android.app.role",
51 ],
Hai Zhang36fd6402020-01-14 21:56:34 -080052 hostdex: true,
53 installable: true,
Hai Zhang36fd6402020-01-14 21:56:34 -080054}