1package {
2    default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
5// When `modem_android_property_manager_fake` is included statically, its
6// dependencies are not transitively included, so the target will also have to
7// include this default to restate them.
8cc_defaults {
9    name: "modem_android_property_manager_fake_defaults",
10    static_libs: [
11        "modem_android_property_manager",
12        "libbase",
13        "modem_log_constants",
14    ],
15}
16
17cc_library_static {
18    name: "modem_android_property_manager_fake",
19    export_include_dirs: [ "include" ],
20    srcs: [ "fake_android_property_manager.cpp" ],
21    defaults: [ "modem_android_property_manager_fake_defaults" ],
22    vendor_available: true,
23}
24