blob: 19439401a7fbe8c3c406a2e0a2b0e79ecc568c4f [file] [log] [blame]
Anton Hansson24c88f42019-12-13 16:17:27 +00001// Copyright (C) 2019 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
15mainline_stubs_args =
16 "--error UnhiddenSystemApi " +
17 "--hide BroadcastBehavior " +
18 "--hide DeprecationMismatch " +
19 "--hide HiddenSuperclass " +
20 "--hide HiddenTypedefConstant " +
21 "--hide HiddenTypeParameter " +
22 "--hide MissingPermission " +
23 "--hide RequiresPermission " +
24 "--hide SdkConstant " +
25 "--hide Todo " +
26 "--hide Typo " +
27 "--hide UnavailableSymbol "
28
Anton Hansson5036ab62019-12-17 10:03:52 +000029// TODO: remove this server classes are cleaned up.
30mainline_stubs_args += "--hide-package com.android.server "
31
Anton Hanssona12addc2020-02-03 14:44:47 +000032priv_apps = " " +
33 "--show-annotation android.annotation.SystemApi\\(" +
Jiyong Parkb4f8a852020-02-25 17:12:30 +090034 "client=android.annotation.SystemApi.Client.PRIVILEGED_APPS" +
Anton Hanssona12addc2020-02-03 14:44:47 +000035 "\\) "
36
37module_libs = " " +
38 " --show-annotation android.annotation.SystemApi\\(" +
Jiyong Parkb4f8a852020-02-25 17:12:30 +090039 "client=android.annotation.SystemApi.Client.MODULE_LIBRARIES" +
Anton Hanssona12addc2020-02-03 14:44:47 +000040 "\\) "
41
Anton Hansson24c88f42019-12-13 16:17:27 +000042stubs_defaults {
43 name: "framework-module-stubs-defaults-publicapi",
44 args: mainline_stubs_args,
45 installable: false,
Anton Hansson15273532020-03-09 19:14:28 +000046 sdk_version: "current",
Anton Hanssondc033c32020-01-17 19:03:34 +000047 check_api: {
48 current: {
49 api_file: "api/current.txt",
50 removed_api_file: "api/removed.txt",
51 },
52 },
Anton Hansson24c88f42019-12-13 16:17:27 +000053}
54
55stubs_defaults {
56 name: "framework-module-stubs-defaults-systemapi",
Anton Hanssona12addc2020-02-03 14:44:47 +000057 args: mainline_stubs_args + priv_apps,
Anton Hansson3b9ac0c2020-03-13 16:28:21 +000058 libs: ["framework-annotations-lib"],
Jiyong Park7be934f2020-01-06 16:22:32 +090059 installable: false,
Anton Hansson15273532020-03-09 19:14:28 +000060 sdk_version: "system_current",
Anton Hanssondc033c32020-01-17 19:03:34 +000061 check_api: {
62 current: {
63 api_file: "api/system-current.txt",
64 removed_api_file: "api/system-removed.txt",
65 },
66 },
Jiyong Park7be934f2020-01-06 16:22:32 +090067}
68
Anton Hanssona12addc2020-02-03 14:44:47 +000069// The defaults for module_libs comes in two parts - defaults for API checks
70// and defaults for stub generation. This is because we want the API txt
71// files to *only* include the module_libs_api, but the stubs to include
72// module_libs_api as well as priv_apps.
73
Jiyong Park7be934f2020-01-06 16:22:32 +090074stubs_defaults {
Anton Hanssona12addc2020-02-03 14:44:47 +000075 name: "framework-module-api-defaults-module_libs_api",
76 args: mainline_stubs_args + module_libs,
Anton Hansson3b9ac0c2020-03-13 16:28:21 +000077 libs: ["framework-annotations-lib"],
Jiyong Park7be934f2020-01-06 16:22:32 +090078 installable: false,
Anton Hansson15273532020-03-09 19:14:28 +000079 sdk_version: "module_current",
Anton Hanssondc033c32020-01-17 19:03:34 +000080 check_api: {
81 current: {
82 api_file: "api/module-lib-current.txt",
83 removed_api_file: "api/module-lib-removed.txt",
84 },
85 },
Jiyong Park7be934f2020-01-06 16:22:32 +090086}
87
88stubs_defaults {
89 name: "framework-module-stubs-defaults-module_libs_api",
Anton Hanssona12addc2020-02-03 14:44:47 +000090 args: mainline_stubs_args + module_libs + priv_apps,
Anton Hansson3b9ac0c2020-03-13 16:28:21 +000091 libs: ["framework-annotations-lib"],
Anton Hansson24c88f42019-12-13 16:17:27 +000092 installable: false,
Anton Hansson15273532020-03-09 19:14:28 +000093 sdk_version: "module_current",
Anton Hansson24c88f42019-12-13 16:17:27 +000094}