blob: f325184a90646f2f83b4c0b6eca6695ed62d0bc9 [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",
26}
27
Paul Duffinc8ed83f2020-05-19 20:53:34 +010028java_sdk_library {
Hai Zhang36fd6402020-01-14 21:56:34 -080029 name: "framework-permission",
Paul Duffinc8ed83f2020-05-19 20:53:34 +010030 defaults: ["framework-module-defaults"],
Paul Duffin85f16af2020-05-31 11:32:06 +010031
Paul Duffin85f16af2020-05-31 11:32:06 +010032 // Restrict access to implementation library.
Baligh Uddin9ba6ee72021-01-26 13:50:56 +000033 impl_library_visibility: [
34 "//frameworks/base/apex/permission:__subpackages__",
35 "//packages/modules/Permission:__subpackages__",
36 ],
Paul Duffin85f16af2020-05-31 11:32:06 +010037
Hai Zhang36fd6402020-01-14 21:56:34 -080038 srcs: [
39 ":framework-permission-sources",
40 ],
Paul Duffinc8ed83f2020-05-19 20:53:34 +010041
Hai Zhang36fd6402020-01-14 21:56:34 -080042 apex_available: [
43 "com.android.permission",
44 "test_com.android.permission",
45 ],
Vladimir Marko53133e72020-03-25 12:27:18 +000046 permitted_packages: [
47 "android.permission",
48 "android.app.role",
49 ],
Hai Zhang36fd6402020-01-14 21:56:34 -080050 hostdex: true,
51 installable: true,
Hai Zhang36fd6402020-01-14 21:56:34 -080052}