diff options
| author | 2020-05-06 08:32:29 +0000 | |
|---|---|---|
| committer | 2020-05-06 08:32:29 +0000 | |
| commit | 0cdc5c26bc0a71e104cfce8ec3ed2a67da97ac2e (patch) | |
| tree | 3cddbf34601ccd5d206515a343e3d9da91744c1d | |
| parent | 95f8aba25eed7206203330bdefdfc38b3294d394 (diff) | |
| parent | 960c675a831092d221fdcb07c15cb2bfa3a0eeef (diff) | |
Merge "Fix last-released check of removed.txt" into rvc-dev
| -rw-r--r-- | StubLibraries.bp | 6 | ||||
| -rw-r--r-- | services/Android.bp | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/StubLibraries.bp b/StubLibraries.bp index 170cac43764a..91efb05b50f4 100644 --- a/StubLibraries.bp +++ b/StubLibraries.bp @@ -110,7 +110,7 @@ droidstubs { }, last_released: { api_file: ":android.api.public.latest", - removed_api_file: "api/removed.txt", + removed_api_file: ":removed.api.public.latest", baseline_file: ":public-api-incompatibilities-with-last-released", }, api_lint: { @@ -152,7 +152,7 @@ droidstubs { }, last_released: { api_file: ":android.api.system.latest", - removed_api_file: "api/system-removed.txt", + removed_api_file: ":removed.api.system.latest", baseline_file: ":system-api-incompatibilities-with-last-released" }, api_lint: { @@ -216,7 +216,7 @@ droidstubs { }, last_released: { api_file: ":android.api.module-lib.latest", - removed_api_file: "api/module-lib-removed.txt", + removed_api_file: ":removed.api.module-lib.latest", baseline_file: ":module-lib-api-incompatibilities-with-last-released" }, api_lint: { diff --git a/services/Android.bp b/services/Android.bp index 2e70f1c528ee..a07bb2853bfc 100644 --- a/services/Android.bp +++ b/services/Android.bp @@ -135,7 +135,7 @@ droidstubs { }, last_released: { api_file: ":android.api.system-server.latest", - removed_api_file: "api/removed.txt", + removed_api_file: ":removed.api.system-server.latest", baseline_file: ":system-server-api-incompatibilities-with-last-released" }, api_lint: { |