Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b2e661b5 authored by Henri Chataing's avatar Henri Chataing
Browse files

system/profile/avrcp: Migrate to libbluetooth_logger

Test: m com.android.btservice
Bug: 305066880
Flag: EXEMPT, mechanical refactor: aosp/2755526
Change-Id: I783ee68452c9caed9ebc79be8ecf408bad2b59ca
parent e08cbed3
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -110,6 +110,7 @@ cc_library_shared {
        "libbluetooth_core_rs_bridge",
        "libbluetooth_crypto_toolbox",
        "libbluetooth_gd",
        "libbluetooth_log",
        "libbt-audio-asrc",
        "libbt-audio-hal-interface",
        "libbt-bta",
+5 −0
Original line number Diff line number Diff line
@@ -38,6 +38,7 @@ cc_library {
    ],
    static_libs: [
        "libbluetooth_gd",
        "libbluetooth_log",
        "libosi",
    ],
}
@@ -52,6 +53,9 @@ cc_library_static {
    apex_available: [
        "com.android.btservices",
    ],
    static_libs: [
        "libbluetooth_log",
    ],
    min_sdk_version: "29",
}

@@ -71,6 +75,7 @@ cc_test {
    ],
    static_libs: [
        "audio.a2dp.default",
        "libbluetooth_log",
        "libosi",
    ],
    min_sdk_version: "29",
+2 −0
Original line number Diff line number Diff line
@@ -26,6 +26,7 @@ cc_library_static {
    ],
    static_libs: [
        "bluetooth_flags_c_lib",
        "libbluetooth_log",
        "libbt-common",
        "libbt_shim_bridge",
        "libosi",
@@ -108,6 +109,7 @@ cc_test {
        "libutils",
    ],
    static_libs: [
        "libbluetooth_log",
        "libbt-audio-hal-interface",
        "libbt-common",
        "libbt_shim_bridge",
+1 −0
Original line number Diff line number Diff line
@@ -60,6 +60,7 @@ cc_defaults {
        "libbluetooth_core_rs",
        "libbluetooth_crypto_toolbox",
        "libbluetooth_gd",
        "libbluetooth_log",
        "libbluetooth_rust_interop",
        "libbt-audio-hal-interface",
        "libbt-bta",
+5 −1
Original line number Diff line number Diff line
@@ -34,7 +34,10 @@ cc_library {
    shared_libs: [
        "liblog",
    ],
    static_libs: ["libosi"],
    static_libs: [
        "libbluetooth_log",
        "libosi",
    ],
}

// Audio A2DP library unit tests for target and host
@@ -53,6 +56,7 @@ cc_test {
    ],
    static_libs: [
        "audio.hearing_aid.default",
        "libbluetooth_log",
        "libosi",
    ],
    min_sdk_version: "29",
Loading