blob: 8abe64c6baa351a93b5cb1f8ffb4c3a2b0821815 [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 },
196 // TODO(b/147559833) enable the compatibility check against the last release API
197 // and the API lint
198 //last_released: {
199 // api_file: ":last-released-module-lib-api",
200 // removed_api_file: "api/module-lib-removed.txt",
201 // baseline_file: ":module-lib-api-incompatibilities-with-last-released"
202 //},
203 //api_lint: {
204 // enabled: true,
205 // new_since: ":last-released-module-lib-api",
206 // baseline_file: "api/module-lib-lint-baseline.txt",
207 //},
208 },
209 //jdiff_enabled: true,
210}
211
Anton Hansson81969c22020-02-03 20:45:56 +0000212
213// The following droidstub module generates source files for the API stub library for
214// modules. Note that it not only includes its own APIs but also other APIs that have
215// narrower scope (all @SystemApis, not just the ones with 'client=MODULE_LIBRARIES').
Jiyong Park2e6cdcc2019-12-20 15:30:28 +0900216
217droidstubs {
218 name: "module-lib-api-stubs-docs",
Anton Hanssonc3668112020-01-17 13:42:43 +0000219 defaults: ["metalava-api-stubs-default"],
Jiyong Park2e6cdcc2019-12-20 15:30:28 +0900220 arg_files: ["core/res/AndroidManifest.xml"],
Anton Hansson81969c22020-02-03 20:45:56 +0000221 args: metalava_framework_docs_args + priv_apps + module_libs,
Jiyong Park2e6cdcc2019-12-20 15:30:28 +0900222}
223
224/////////////////////////////////////////////////////////////////////
Jiyong Park7fb4b182019-12-20 14:35:43 +0900225// android_*_stubs_current modules are the stubs libraries compiled
226// from *-api-stubs-docs
227/////////////////////////////////////////////////////////////////////
228
229java_defaults {
230 name: "framework-stubs-default",
Anton Hansson42afd612020-02-08 20:43:19 +0000231 libs: [ "stub-annotations" ],
232 static_libs: [ "private-stub-annotations-jar" ],
233 sdk_version: "core_current",
Jiyong Park7fb4b182019-12-20 14:35:43 +0900234 errorprone: {
235 javacflags: [
236 "-XepDisableAllChecks",
237 ],
238 },
239 java_resources: [
240 ":notices-for-framework-stubs",
241 ],
Jiyong Park7fb4b182019-12-20 14:35:43 +0900242 system_modules: "none",
243 java_version: "1.8",
244 compile_dex: true,
245}
246
247java_library_static {
248 name: "android_stubs_current",
Anton Hansson42afd612020-02-08 20:43:19 +0000249 srcs: [ ":api-stubs-docs" ],
Jiyong Park7fb4b182019-12-20 14:35:43 +0900250 defaults: ["framework-stubs-default"],
251}
252
253java_library_static {
254 name: "android_system_stubs_current",
Anton Hansson42afd612020-02-08 20:43:19 +0000255 srcs: [ ":system-api-stubs-docs" ],
Jiyong Park7fb4b182019-12-20 14:35:43 +0900256 defaults: ["framework-stubs-default"],
257}
258
259java_library_static {
260 name: "android_test_stubs_current",
Anton Hansson42afd612020-02-08 20:43:19 +0000261 srcs: [ ":test-api-stubs-docs" ],
Jiyong Park7fb4b182019-12-20 14:35:43 +0900262 defaults: ["framework-stubs-default"],
Jiyong Park2e6cdcc2019-12-20 15:30:28 +0900263}
264
265java_library_static {
Anton Hansson9c4bbe92020-01-30 12:09:02 +0000266 name: "android_module_lib_stubs_current",
Anton Hansson42afd612020-02-08 20:43:19 +0000267 srcs: [ ":module-lib-api-stubs-docs" ],
Jiyong Park2e6cdcc2019-12-20 15:30:28 +0900268 defaults: ["framework-stubs-default"],
Jiyong Park7fb4b182019-12-20 14:35:43 +0900269}
270
Jiyong Park7fb4b182019-12-20 14:35:43 +0900271/////////////////////////////////////////////////////////////////////
272// hwbinder.stubs provides APIs required for building HIDL Java
273// libraries.
274/////////////////////////////////////////////////////////////////////
275
276droidstubs {
277 name: "hwbinder-stubs-docs",
278 srcs: [
279 "core/java/android/os/HidlSupport.java",
280 "core/java/android/annotation/IntDef.java",
281 "core/java/android/annotation/IntRange.java",
282 "core/java/android/annotation/NonNull.java",
283 "core/java/android/annotation/SystemApi.java",
284 "core/java/android/os/HidlMemory.java",
285 "core/java/android/os/HwBinder.java",
286 "core/java/android/os/HwBlob.java",
287 "core/java/android/os/HwParcel.java",
288 "core/java/android/os/IHwBinder.java",
289 "core/java/android/os/IHwInterface.java",
290 "core/java/android/os/DeadObjectException.java",
291 "core/java/android/os/DeadSystemException.java",
292 "core/java/android/os/NativeHandle.java",
293 "core/java/android/os/RemoteException.java",
294 "core/java/android/util/AndroidException.java",
295 ],
296 installable: false,
297 sdk_version: "core_platform",
298 annotations_enabled: true,
299 previous_api: ":last-released-public-api",
300 merge_annotations_dirs: [
301 "metalava-manual",
302 ],
Anton Hansson81969c22020-02-03 20:45:56 +0000303 args: priv_apps,
Jiyong Park7fb4b182019-12-20 14:35:43 +0900304}
305
306java_library_static {
307 name: "hwbinder.stubs",
308 sdk_version: "core_current",
309 srcs: [
310 ":hwbinder-stubs-docs",
311 ],
312}
313
314/////////////////////////////////////////////////////////////////////
315// Stubs for hiddenapi processing.
316/////////////////////////////////////////////////////////////////////
317
318droidstubs {
319 name: "hiddenapi-lists-docs",
320 defaults: ["metalava-api-stubs-default"],
321 arg_files: [
322 "core/res/AndroidManifest.xml",
323 ],
324 dex_api_filename: "public-dex.txt",
325 private_dex_api_filename: "private-dex.txt",
326 removed_dex_api_filename: "removed-dex.txt",
327 args: metalava_framework_docs_args +
328 " --show-unannotated " +
Anton Hansson81969c22020-02-03 20:45:56 +0000329 priv_apps +
Jiyong Park7fb4b182019-12-20 14:35:43 +0900330 " --show-annotation android.annotation.TestApi ",
331}
332
333droidstubs {
334 name: "hiddenapi-mappings",
335 defaults: ["metalava-api-stubs-default"],
336 srcs: [
337 ":opt-telephony-common-srcs",
338 ],
339
340 arg_files: [
341 "core/res/AndroidManifest.xml",
342 ],
343 dex_mapping_filename: "dex-mapping.txt",
344 args: metalava_framework_docs_args +
345 " --hide ReferencesHidden " +
346 " --hide UnhiddenSystemApi " +
347 " --show-unannotated " +
Anton Hansson81969c22020-02-03 20:45:56 +0000348 priv_apps +
Jiyong Park7fb4b182019-12-20 14:35:43 +0900349 " --show-annotation android.annotation.TestApi ",
350}
351
352/////////////////////////////////////////////////////////////////////
353// api/*-current.txt files for use by modules in other directories
354// like the CTS test
355/////////////////////////////////////////////////////////////////////
356
357filegroup {
358 name: "frameworks-base-api-current.txt",
359 srcs: [
360 "api/current.txt",
361 ],
362}
363
364filegroup {
365 name: "frameworks-base-api-system-current.txt",
366 srcs: [
367 "api/system-current.txt",
368 ],
369}
370
371filegroup {
372 name: "frameworks-base-api-system-removed.txt",
373 srcs: [
374 "api/system-removed.txt",
375 ],
376}