modem/modem_log_constants: create common folder

A lot of different modem related processes require reading / writing to
the same android system properties. This CL solifies them all into
one place to avoid duplication.

Test: build
Bug: 302435001
Change-Id: I113f43bb68833224f45ad91668cd327587e1649b
This commit is contained in:
kierancyphus 2023-11-10 15:32:26 +08:00
parent 0944a8db52
commit 93c22b6672
7 changed files with 83 additions and 59 deletions

View file

@ -24,6 +24,7 @@ cc_defaults {
"libbase",
// liblog is not directly used by us, but it's a transitive dependency of libbase
"liblog",
"modem_log_constants",
],
}
@ -65,8 +66,10 @@ cc_test {
"modem_android_property_manager_fake_defaults",
],
static_libs: [
"modem_log_dumper",
"modem_android_property_manager",
"modem_android_property_manager_fake",
"modem_log_constants",
"modem_log_dumper",
"libgmock",
],
vendor: true,