From 1deced1026ab93a5625ba8680eb3dd39798b745d Mon Sep 17 00:00:00 2001 From: Cole Faust Date: Wed, 15 Feb 2023 13:24:18 -0800 Subject: [PATCH] Remove sdk extensions from module_lib / system_server api databases We want these lint api-versions.xml files to only have the non-updatable apis, and sdk extensions are updatable. Bug: 193460475 Test: Presubmits Change-Id: I06698e0eec0c388cff223288ac3c6abe109ea713 --- StubLibraries.bp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/StubLibraries.bp b/StubLibraries.bp index d043464699e95..38413c22a3d52 100644 --- a/StubLibraries.bp +++ b/StubLibraries.bp @@ -546,7 +546,8 @@ droidstubs { "api-versions-jars-dir", ], api_levels_sdk_type: "module-lib", - extensions_info_file: ":sdk-extensions-info", + // extensions_info_file is purposefully omitted, because this module should just be + // the non-updatable portions of the sdk, and extension sdks are updatable. } droidstubs { @@ -563,7 +564,8 @@ droidstubs { "api-versions-jars-dir", ], api_levels_sdk_type: "system-server", - extensions_info_file: ":sdk-extensions-info", + // extensions_info_file is purposefully omitted, because this module should just be + // the non-updatable portions of the sdk, and extension sdks are updatable. } /////////////////////////////////////////////////////////////////////