From 12cddb32c0968ccfa67cae75cd691e208e79611a Mon Sep 17 00:00:00 2001 From: Jihoon Kang <jihoonkang@google.com> Date: Thu, 29 Jun 2023 21:35:24 +0000 Subject: [PATCH] Rename dep_api_srcs property This change renames java_api_library.dep_api_srcs property to full_api_surface_stub, to reflect the change in aosp/2637669. Test: m nothing --build-from-text-stub Bug: 275570206 Change-Id: I6fc31ba33b4c067f53bae00899920dc29e16e39f --- api/StubLibraries.bp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/api/StubLibraries.bp b/api/StubLibraries.bp index 7c8dd92f96d86..9a0053f8add6c 100644 --- a/api/StubLibraries.bp +++ b/api/StubLibraries.bp @@ -380,7 +380,7 @@ java_api_library { ":non-updatable-current.txt", ], defaults: ["android-non-updatable_from_text_defaults"], - dep_api_srcs: "android_stubs_current.from-text", + full_api_surface_stub: "android_stubs_current.from-text", } java_api_library { @@ -391,7 +391,7 @@ java_api_library { ":non-updatable-system-current.txt", ], defaults: ["android-non-updatable_from_text_defaults"], - dep_api_srcs: "android_system_stubs_current.from-text", + full_api_surface_stub: "android_system_stubs_current.from-text", } java_api_library { @@ -403,7 +403,7 @@ java_api_library { ":non-updatable-test-current.txt", ], defaults: ["android-non-updatable_from_text_defaults"], - dep_api_srcs: "android_test_stubs_current.from-text", + full_api_surface_stub: "android_test_stubs_current.from-text", } java_api_library { @@ -415,7 +415,7 @@ java_api_library { ":non-updatable-module-lib-current.txt", ], defaults: ["android-non-updatable_from_text_defaults"], - dep_api_srcs: "android_module_lib_stubs_current_full.from-text", + full_api_surface_stub: "android_module_lib_stubs_current_full.from-text", } java_defaults { -- GitLab