blob: c43fabde81daf6116e45676f5e100e6ebab965d6 [file] [log] [blame]
Hai Zhang82a62272020-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 Duffin35891742020-05-19 20:53:34 +010024java_sdk_library {
Hai Zhang82a62272020-01-14 21:56:34 -080025 name: "framework-permission",
Paul Duffin35891742020-05-19 20:53:34 +010026 defaults: ["framework-module-defaults"],
Hai Zhang82a62272020-01-14 21:56:34 -080027 srcs: [
28 ":framework-permission-sources",
29 ],
Paul Duffin35891742020-05-19 20:53:34 +010030
31 // TODO(b/155480189) - Remove naming_scheme once references have been resolved.
32 // Temporary java_sdk_library component naming scheme to use to ease the transition from separate
33 // modules to java_sdk_library.
34 naming_scheme: "framework-modules",
35
Hai Zhang82a62272020-01-14 21:56:34 -080036 apex_available: [
37 "com.android.permission",
38 "test_com.android.permission",
39 ],
Vladimir Marko76e7ff42020-03-25 12:27:18 +000040 permitted_packages: [
41 "android.permission",
42 "android.app.role",
43 ],
Hai Zhang82a62272020-01-14 21:56:34 -080044 hostdex: true,
45 installable: true,
46 visibility: [
47 "//frameworks/base/apex/permission:__subpackages__",
48 ],
Paul Duffin35891742020-05-19 20:53:34 +010049 stubs_library_visibility: ["//visibility:public"],
Hai Zhang82a62272020-01-14 21:56:34 -080050}