A lot of modem code requires sleeping while vendor services do some background processing. Since we don't want to actually sleep for unit tests, an interface is provided here so that a fake sleep can be injected. Test: N/A. Directly forwards methods or does nothing. Bug: 302435001 Change-Id: I3bcf0307156d93756d69cd9f749c88b508ba9466
16 lines
361 B
Plaintext
16 lines
361 B
Plaintext
package {
|
|
default_applicable_licenses: ["Android-Apache-2.0"],
|
|
}
|
|
|
|
cc_defaults {
|
|
name: "fake_modem_clock_manager_defaults",
|
|
shared_libs: [ "modem_clock_manager" ],
|
|
}
|
|
|
|
cc_library_static {
|
|
name: "fake_modem_clock_manager",
|
|
export_include_dirs: [ "include" ],
|
|
defaults: [ "fake_modem_clock_manager_defaults" ],
|
|
vendor_available: true,
|
|
}
|