blob: 1a2d5d5412ed49208175931bed4091dc52ac702d [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
15filegroup {
16 name: "framework-permission-sources",
17 srcs: [
18 "java/**/*.java",
19 "java/**/*.aidl",
20 ],
21 path: "java",
22}
23
Paul Duffinc8ed83f2020-05-19 20:53:34 +010024java_sdk_library {
Hai Zhang36fd6402020-01-14 21:56:34 -080025 name: "framework-permission",
Paul Duffinc8ed83f2020-05-19 20:53:34 +010026 defaults: ["framework-module-defaults"],
Paul Duffin85f16af2020-05-31 11:32:06 +010027
Paul Duffin85f16af2020-05-31 11:32:06 +010028 // Restrict access to implementation library.
Baligh Uddin9ba6ee72021-01-26 13:50:56 +000029 impl_library_visibility: [
30 "//frameworks/base/apex/permission:__subpackages__",
31 "//packages/modules/Permission:__subpackages__",
32 ],
Paul Duffin85f16af2020-05-31 11:32:06 +010033
Hai Zhang36fd6402020-01-14 21:56:34 -080034 srcs: [
35 ":framework-permission-sources",
36 ],
Paul Duffinc8ed83f2020-05-19 20:53:34 +010037
Hai Zhang36fd6402020-01-14 21:56:34 -080038 apex_available: [
39 "com.android.permission",
40 "test_com.android.permission",
41 ],
Vladimir Marko53133e72020-03-25 12:27:18 +000042 permitted_packages: [
43 "android.permission",
44 "android.app.role",
45 ],
Hai Zhang36fd6402020-01-14 21:56:34 -080046 hostdex: true,
47 installable: true,
Hai Zhang36fd6402020-01-14 21:56:34 -080048}