android_property_manager is moved to its own folder in the root of the modem folder. This is so that libeomservice proxy has a specific build target to include. Test: build, flash, check modem logs in bugreport Bug: 302435001 Change-Id: Ifc4a0c888717f5c28cf9b642d0b978b495be29d0
24 lines
713 B
Plaintext
24 lines
713 B
Plaintext
package {
|
|
default_applicable_licenses: ["Android-Apache-2.0"],
|
|
}
|
|
|
|
// When `modem_android_property_manager_fake` is included statically, its
|
|
// dependencies are not transitively included, so the target will also have to
|
|
// include this default to restate them.
|
|
cc_defaults {
|
|
name: "modem_android_property_manager_fake_defaults",
|
|
static_libs: [
|
|
"modem_android_property_manager",
|
|
"libbase",
|
|
"modem_log_constants",
|
|
],
|
|
}
|
|
|
|
cc_library_static {
|
|
name: "modem_android_property_manager_fake",
|
|
export_include_dirs: [ "include" ],
|
|
srcs: [ "fake_android_property_manager.cpp" ],
|
|
defaults: [ "modem_android_property_manager_fake_defaults" ],
|
|
vendor_available: true,
|
|
}
|