summaryrefslogtreecommitdiff
path: root/api/Android.bp
diff options
context:
space:
mode:
Diffstat (limited to 'api/Android.bp')
-rw-r--r--api/Android.bp14
1 files changed, 14 insertions, 0 deletions
diff --git a/api/Android.bp b/api/Android.bp
index 546f15171285..ffc4a2146594 100644
--- a/api/Android.bp
+++ b/api/Android.bp
@@ -147,3 +147,17 @@ genrule {
tools: ["metalava"],
cmd: "$(location metalava) --no-banner --format=v2 $(in) --api $(out)",
}
+
+genrule {
+ name: "combined-removed-dex",
+ srcs: [
+ ":frameworks-base-api-removed-merged.txt",
+ ":frameworks-base-api-system-removed-merged.txt",
+ ":android.car-stubs-docs{.removed-api.txt}",
+ ":android.car-system-stubs-docs{.removed-api.txt}",
+ ],
+ tool_files: ["gen_combined_removed_dex.sh"],
+ tools: ["metalava"],
+ out: ["combined-removed-dex.txt"],
+ cmd: "$(location gen_combined_removed_dex.sh) $(location metalava) $(genDir) $(in) > $(out)",
+}