Specify is_stubs_module property in selected aconfig library modules

"fake_device_config" and "strict_mode_stub" provide stubs and do not
contain any implementation details. Specifying the property
"is_stubs_module" to these modules allow inter-container dependency on
these modules.

Test: m nothing
Bug: 354029496
Change-Id: Ia65ad36ca02c0594fc753935f9cc7c0af6caa20d
This commit is contained in:
Jihoon Kang
2024-08-14 22:23:08 +00:00
parent f55902f65f
commit 48f2b22b45

View File

@@ -22,6 +22,7 @@ java_library {
sdk_version: "none", sdk_version: "none",
system_modules: "core-all-system-modules", system_modules: "core-all-system-modules",
host_supported: true, host_supported: true,
is_stubs_module: true,
} }
java_library { java_library {
@@ -31,4 +32,5 @@ java_library {
], ],
sdk_version: "core_current", sdk_version: "core_current",
host_supported: true, host_supported: true,
is_stubs_module: true,
} }