diff options
author | Mathew Inwood <mathewi@google.com> | 2018-07-10 12:02:21 -0700 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2018-07-10 12:02:21 -0700 |
commit | 0b5f738f4cb0f25c20244f09a484d4acf16f257f (patch) | |
tree | ab90b6e96d53681545ba7c713d43642c1bf7736d | |
parent | 09d6bd8a665da92e182e8aee80779d6ae19dedcd (diff) | |
parent | c47c718a3b8288ff691d3e3865ee81f6724d7a8f (diff) |
Merge "Add build rule for API->source mapping." am: b4919259ab am: 4500790a81
am: c47c718a3b
Change-Id: I7d35a2de0b5fe8c4fe9e4994de910b64c63da2b8
-rw-r--r-- | Android.bp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp index c8a1c937ca33..107d0ac5fe90 100644 --- a/Android.bp +++ b/Android.bp @@ -1194,6 +1194,24 @@ droiddoc { " -showAnnotation android.annotation.TestApi", } +droiddoc { + name: "hiddenapi-mappings", + defaults: ["framework-docs-default"], + arg_files: [ + "core/res/AndroidManifest.xml", + ":api-version-xml", + "core/java/overview.html", + ":current-support-api", + ], + dex_mapping_filename: "dex-mapping.txt", + args: framework_docs_args + + " -referenceonly" + + " -nodocs" + + " -showUnannotated" + + " -showAnnotation android.annotation.SystemApi" + + " -showAnnotation android.annotation.TestApi", +} + filegroup { name: "apache-http-stubs-sources", srcs: [ |