blob: afe7b810e294fa052bd997668e80e8a657363b3d [file] [log] [blame]
Jiyong Park7fb4b182019-12-20 14:35:43 +09001// 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
15// How stubs are generated:
16//
17// raw source files --(metalava)--> stub source files --(javac)--> stub jar files
18//
19// The metalava conversion is done by droidstub modules *-api-stubs-docs.
20// The javac compilation is done by java_library modules android_*_stubs_current.
21// The metalava conversion is also responsible for creating API signature files
22// and comparing them against the last API signature in api/*-current.txt files
23// and also against the latest frozen API signature in prebuilts/sdk/*/*/api/android.txt
24// files.
25
26/////////////////////////////////////////////////////////////////////
27// Common metalava configs
28/////////////////////////////////////////////////////////////////////
29
30packages_to_document = [
31 "android",
32 "dalvik",
33 "java",
34 "javax",
35 "junit",
36 "org.apache.http",
37 "org.json",
38 "org.w3c.dom",
39 "org.xml.sax",
40 "org.xmlpull",
41]
42
43stubs_defaults {
Jiyong Park2e6cdcc2019-12-20 15:30:28 +090044 name: "metalava-non-updatable-api-stubs-default",
Jiyong Park7fb4b182019-12-20 14:35:43 +090045 srcs: [
46 ":framework-non-updatable-sources",
Jiyong Park7fb4b182019-12-20 14:35:43 +090047 "core/java/**/*.logtags",
48 ":opt-telephony-srcs",
49 ":opt-net-voip-srcs",
50 ":core-current-stubs-source",
51 ":core_public_api_files",
52 ":ike-api-srcs",
53 ],
54 libs: ["framework-internal-utils"],
55 installable: false,
56 annotations_enabled: true,
57 previous_api: ":last-released-public-api",
58 merge_annotations_dirs: [
59 "metalava-manual",
60 ],
61 api_levels_annotations_enabled: true,
62 api_levels_annotations_dirs: [
63 "sdk-dir",
64 "api-versions-jars-dir",
65 ],
Jiyong Park7fb4b182019-12-20 14:35:43 +090066 filter_packages: packages_to_document,
67}
68
Jiyong Park2e6cdcc2019-12-20 15:30:28 +090069stubs_defaults {
70 name: "metalava-api-stubs-default",
71 defaults: ["metalava-non-updatable-api-stubs-default"],
72 srcs: [":framework-updatable-sources"],
73 sdk_version: "core_platform",
74}
75
Jiyong Park7fb4b182019-12-20 14:35:43 +090076/////////////////////////////////////////////////////////////////////
77// *-api-stubs-docs modules providing source files for the stub libraries
78/////////////////////////////////////////////////////////////////////
79
Jiyong Park2e6cdcc2019-12-20 15:30:28 +090080// api-stubs-docs, system-api-stubs-docs, and test-api-stubs-docs have APIs
81// from the non-updatable part of the platform as well as from the updatable
82// modules
Jiyong Park7fb4b182019-12-20 14:35:43 +090083droidstubs {
84 name: "api-stubs-docs",
85 defaults: ["metalava-api-stubs-default"],
86 api_filename: "public_api.txt",
87 private_api_filename: "private.txt",
88 removed_api_filename: "removed.txt",
89 arg_files: [
90 "core/res/AndroidManifest.xml",
91 ],
92 args: metalava_framework_docs_args,
93 check_api: {
94 current: {
95 api_file: "api/current.txt",
96 removed_api_file: "api/removed.txt",
97 },
98 last_released: {
99 api_file: ":last-released-public-api",
100 removed_api_file: "api/removed.txt",
101 baseline_file: ":public-api-incompatibilities-with-last-released",
102 },
103 api_lint: {
104 enabled: true,
105 new_since: ":last-released-public-api",
106 baseline_file: "api/lint-baseline.txt",
107 },
108 },
109 jdiff_enabled: true,
110}
111
Anton Hansson81969c22020-02-03 20:45:56 +0000112priv_apps = " " +
113 "--show-annotation android.annotation.SystemApi\\(" +
114 "client=android.annotation.SystemApi.Client.PRIVILEGED_APPS" +
115 "\\) "
116
117module_libs = " " +
118 " --show-annotation android.annotation.SystemApi\\(" +
119 "client=android.annotation.SystemApi.Client.MODULE_LIBRARIES" +
120 "\\) "
121
Jiyong Park7fb4b182019-12-20 14:35:43 +0900122droidstubs {
123 name: "system-api-stubs-docs",
124 defaults: ["metalava-api-stubs-default"],
125 api_tag_name: "SYSTEM",
126 api_filename: "system-api.txt",
127 private_api_filename: "system-private.txt",
128 private_dex_api_filename: "system-private-dex.txt",
129 removed_api_filename: "system-removed.txt",
130 arg_files: [
131 "core/res/AndroidManifest.xml",
132 ],
Anton Hansson81969c22020-02-03 20:45:56 +0000133 args: metalava_framework_docs_args + priv_apps,
Jiyong Park7fb4b182019-12-20 14:35:43 +0900134 check_api: {
135 current: {
136 api_file: "api/system-current.txt",
137 removed_api_file: "api/system-removed.txt",
138 },
139 last_released: {
140 api_file: ":last-released-system-api",
141 removed_api_file: "api/system-removed.txt",
142 baseline_file: ":system-api-incompatibilities-with-last-released"
143 },
144 api_lint: {
145 enabled: true,
146 new_since: ":last-released-system-api",
147 baseline_file: "api/system-lint-baseline.txt",
148 },
149 },
150 jdiff_enabled: true,
151}
152
153droidstubs {
154 name: "test-api-stubs-docs",
155 defaults: ["metalava-api-stubs-default"],
156 api_tag_name: "TEST",
157 api_filename: "test-api.txt",
158 removed_api_filename: "test-removed.txt",
159 arg_files: [
160 "core/res/AndroidManifest.xml",
161 ],
162 args: metalava_framework_docs_args + " --show-annotation android.annotation.TestApi",
163 check_api: {
164 current: {
165 api_file: "api/test-current.txt",
166 removed_api_file: "api/test-removed.txt",
167 },
168 api_lint: {
169 enabled: true,
170 baseline_file: "api/test-lint-baseline.txt",
171 },
172 },
173}
174
175/////////////////////////////////////////////////////////////////////
Jiyong Park2e6cdcc2019-12-20 15:30:28 +0900176// Following droidstubs modules are for extra APIs for modules.
177// The framework currently have two more API surfaces for modules:
178// @SystemApi(client=MODULE_APPS) and @SystemApi(client=MODULE_LIBRARIES)
179/////////////////////////////////////////////////////////////////////
180
Anton Hansson81969c22020-02-03 20:45:56 +0000181// TODO(b/146727827) remove the *-api module when we can teach metalava
Jiyong Park2e6cdcc2019-12-20 15:30:28 +0900182// about the relationship among the API surfaces. Currently, these modules are only to generate
183// the API signature files and ensure that the APIs evolve in a backwards compatible manner.
184// They however are NOT used for building the API stub.
Jiyong Park2e6cdcc2019-12-20 15:30:28 +0900185
186droidstubs {
187 name: "module-lib-api",
Anton Hanssonc3668112020-01-17 13:42:43 +0000188 defaults: ["metalava-api-stubs-default"],
Jiyong Park2e6cdcc2019-12-20 15:30:28 +0900189 arg_files: ["core/res/AndroidManifest.xml"],
Anton Hansson81969c22020-02-03 20:45:56 +0000190 args: metalava_framework_docs_args + module_libs,
Jiyong Park2e6cdcc2019-12-20 15:30:28 +0900191 check_api: {
192 current: {
193 api_file: "api/module-lib-current.txt",
194 removed_api_file: "api/module-lib-removed.txt",
195 },
Anton Hansson626afea2020-02-11 14:36:40 +0000196 last_released: {
197 api_file: ":last-released-module-lib-api",
198 removed_api_file: "api/module-lib-removed.txt",
199 baseline_file: ":module-lib-api-incompatibilities-with-last-released"
200 },
201 api_lint: {
202 enabled: true,
203 new_since: ":last-released-module-lib-api",
204 baseline_file: "api/module-lib-lint-baseline.txt",
205 },
Jiyong Park2e6cdcc2019-12-20 15:30:28 +0900206 },
Jiyong Park2e6cdcc2019-12-20 15:30:28 +0900207}
208
Anton Hansson81969c22020-02-03 20:45:56 +0000209
210// The following droidstub module generates source files for the API stub library for
211// modules. Note that it not only includes its own APIs but also other APIs that have
212// narrower scope (all @SystemApis, not just the ones with 'client=MODULE_LIBRARIES').
Jiyong Park2e6cdcc2019-12-20 15:30:28 +0900213
214droidstubs {
215 name: "module-lib-api-stubs-docs",
Anton Hanssonc3668112020-01-17 13:42:43 +0000216 defaults: ["metalava-api-stubs-default"],
Jiyong Park2e6cdcc2019-12-20 15:30:28 +0900217 arg_files: ["core/res/AndroidManifest.xml"],
Anton Hansson81969c22020-02-03 20:45:56 +0000218 args: metalava_framework_docs_args + priv_apps + module_libs,
Jiyong Park2e6cdcc2019-12-20 15:30:28 +0900219}
220
221/////////////////////////////////////////////////////////////////////
Jiyong Park7fb4b182019-12-20 14:35:43 +0900222// android_*_stubs_current modules are the stubs libraries compiled
223// from *-api-stubs-docs
224/////////////////////////////////////////////////////////////////////
225
226java_defaults {
227 name: "framework-stubs-default",
Anton Hansson42afd612020-02-08 20:43:19 +0000228 libs: [ "stub-annotations" ],
229 static_libs: [ "private-stub-annotations-jar" ],
230 sdk_version: "core_current",
Jiyong Park7fb4b182019-12-20 14:35:43 +0900231 errorprone: {
232 javacflags: [
233 "-XepDisableAllChecks",
234 ],
235 },
236 java_resources: [
237 ":notices-for-framework-stubs",
238 ],
Jiyong Park7fb4b182019-12-20 14:35:43 +0900239 system_modules: "none",
240 java_version: "1.8",
241 compile_dex: true,
242}
243
244java_library_static {
245 name: "android_stubs_current",
Anton Hansson42afd612020-02-08 20:43:19 +0000246 srcs: [ ":api-stubs-docs" ],
Jiyong Park7fb4b182019-12-20 14:35:43 +0900247 defaults: ["framework-stubs-default"],
248}
249
250java_library_static {
251 name: "android_system_stubs_current",
Anton Hansson42afd612020-02-08 20:43:19 +0000252 srcs: [ ":system-api-stubs-docs" ],
Jiyong Park7fb4b182019-12-20 14:35:43 +0900253 defaults: ["framework-stubs-default"],
254}
255
256java_library_static {
257 name: "android_test_stubs_current",
Anton Hansson42afd612020-02-08 20:43:19 +0000258 srcs: [ ":test-api-stubs-docs" ],
Jiyong Park7fb4b182019-12-20 14:35:43 +0900259 defaults: ["framework-stubs-default"],
Jiyong Park2e6cdcc2019-12-20 15:30:28 +0900260}
261
262java_library_static {
Anton Hansson9c4bbe92020-01-30 12:09:02 +0000263 name: "android_module_lib_stubs_current",
Anton Hansson42afd612020-02-08 20:43:19 +0000264 srcs: [ ":module-lib-api-stubs-docs" ],
Jiyong Park2e6cdcc2019-12-20 15:30:28 +0900265 defaults: ["framework-stubs-default"],
Jiyong Park7fb4b182019-12-20 14:35:43 +0900266}
267
Jiyong Park7fb4b182019-12-20 14:35:43 +0900268/////////////////////////////////////////////////////////////////////
269// hwbinder.stubs provides APIs required for building HIDL Java
270// libraries.
271/////////////////////////////////////////////////////////////////////
272
273droidstubs {
274 name: "hwbinder-stubs-docs",
275 srcs: [
276 "core/java/android/os/HidlSupport.java",
277 "core/java/android/annotation/IntDef.java",
278 "core/java/android/annotation/IntRange.java",
279 "core/java/android/annotation/NonNull.java",
280 "core/java/android/annotation/SystemApi.java",
281 "core/java/android/os/HidlMemory.java",
282 "core/java/android/os/HwBinder.java",
283 "core/java/android/os/HwBlob.java",
284 "core/java/android/os/HwParcel.java",
285 "core/java/android/os/IHwBinder.java",
286 "core/java/android/os/IHwInterface.java",
287 "core/java/android/os/DeadObjectException.java",
288 "core/java/android/os/DeadSystemException.java",
289 "core/java/android/os/NativeHandle.java",
290 "core/java/android/os/RemoteException.java",
291 "core/java/android/util/AndroidException.java",
292 ],
293 installable: false,
294 sdk_version: "core_platform",
295 annotations_enabled: true,
296 previous_api: ":last-released-public-api",
297 merge_annotations_dirs: [
298 "metalava-manual",
299 ],
Anton Hansson81969c22020-02-03 20:45:56 +0000300 args: priv_apps,
Jiyong Park7fb4b182019-12-20 14:35:43 +0900301}
302
303java_library_static {
304 name: "hwbinder.stubs",
305 sdk_version: "core_current",
306 srcs: [
307 ":hwbinder-stubs-docs",
308 ],
309}
310
311/////////////////////////////////////////////////////////////////////
312// Stubs for hiddenapi processing.
313/////////////////////////////////////////////////////////////////////
314
315droidstubs {
316 name: "hiddenapi-lists-docs",
317 defaults: ["metalava-api-stubs-default"],
318 arg_files: [
319 "core/res/AndroidManifest.xml",
320 ],
321 dex_api_filename: "public-dex.txt",
322 private_dex_api_filename: "private-dex.txt",
323 removed_dex_api_filename: "removed-dex.txt",
324 args: metalava_framework_docs_args +
325 " --show-unannotated " +
Anton Hansson81969c22020-02-03 20:45:56 +0000326 priv_apps +
Jiyong Park7fb4b182019-12-20 14:35:43 +0900327 " --show-annotation android.annotation.TestApi ",
328}
329
330droidstubs {
331 name: "hiddenapi-mappings",
332 defaults: ["metalava-api-stubs-default"],
333 srcs: [
334 ":opt-telephony-common-srcs",
335 ],
336
337 arg_files: [
338 "core/res/AndroidManifest.xml",
339 ],
340 dex_mapping_filename: "dex-mapping.txt",
341 args: metalava_framework_docs_args +
342 " --hide ReferencesHidden " +
343 " --hide UnhiddenSystemApi " +
344 " --show-unannotated " +
Anton Hansson81969c22020-02-03 20:45:56 +0000345 priv_apps +
Jiyong Park7fb4b182019-12-20 14:35:43 +0900346 " --show-annotation android.annotation.TestApi ",
347}
348
349/////////////////////////////////////////////////////////////////////
350// api/*-current.txt files for use by modules in other directories
351// like the CTS test
352/////////////////////////////////////////////////////////////////////
353
354filegroup {
355 name: "frameworks-base-api-current.txt",
356 srcs: [
357 "api/current.txt",
358 ],
359}
360
361filegroup {
362 name: "frameworks-base-api-system-current.txt",
363 srcs: [
364 "api/system-current.txt",
365 ],
366}
367
368filegroup {
369 name: "frameworks-base-api-system-removed.txt",
370 srcs: [
371 "api/system-removed.txt",
372 ],
373}