Add internal only modules to standard module list

Adds the com.android.uwb and com.android.scheduling modules to the
standard list of modules. This ensures that when they are released to
AOSP that the packages/modules/common/build/mainline_modules_sdks.sh
build script will build them correctly.

Ignore-AOSP-First: internal only changes.

Bug: 204763318
Test: vendor/google/build/mainline_modules_sdks.sh
      atest mainline_modules_sdks_test
Change-Id: Idd83a71c477422ddf35d32f0f72293ac6f8626cd
This commit is contained in:
Paul Duffin
2022-01-18 15:18:51 +00:00
parent 6e43d6f8ae
commit adb67d1944

View File

@@ -249,6 +249,10 @@ MAINLINE_MODULES = [
apex="com.android.permission", apex="com.android.permission",
sdks=["permission-module-sdk"], sdks=["permission-module-sdk"],
), ),
MainlineModule(
apex="com.android.scheduling",
sdks=["scheduling-sdk"],
),
MainlineModule( MainlineModule(
apex="com.android.sdkext", apex="com.android.sdkext",
sdks=["sdkextensions-sdk"], sdks=["sdkextensions-sdk"],
@@ -261,6 +265,10 @@ MAINLINE_MODULES = [
apex="com.android.tethering", apex="com.android.tethering",
sdks=["tethering-module-sdk"], sdks=["tethering-module-sdk"],
), ),
MainlineModule(
apex="com.android.uwb",
sdks=["uwb-module-sdk"],
),
MainlineModule( MainlineModule(
apex="com.android.wifi", apex="com.android.wifi",
sdks=["wifi-module-sdk"], sdks=["wifi-module-sdk"],