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

Commit 9bdb1f0b authored by Rahul Arya's avatar Rahul Arya Committed by Gerrit Code Review
Browse files

Merge "[Connection Manager] Move libbluetooth_rs into stack"

parents d3297862 93e8c2f5
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -69,6 +69,7 @@ cc_library_shared {
    static_libs: [
        "libbluetooth-types",
        "libbluetooth",
        "libbluetooth_core_rs",
        "libc++fs",
        "libbluetooth_core_rs_bridge",
    ],
+1 −1
Original line number Diff line number Diff line
@@ -53,6 +53,7 @@ cc_defaults {
        "libbluetooth-dumpsys",
        "libbluetooth-protos",
        "libbluetooth-types",
        "libbluetooth_core_rs",
        "libbluetooth_gd",
        "libbluetooth_rust_interop",
        "libbt-audio-hal-interface",
@@ -65,7 +66,6 @@ cc_defaults {
        "libbt-stack",
        "libbt-stack-core",
        "libbt_shim_bridge",
        "libbt_shim_ffi",
        "libbtcore",
        "libbtdevice",
        "libbte",
+1 −0
Original line number Diff line number Diff line
@@ -268,6 +268,7 @@ cc_test {
        "android.system.suspend.control-V1-ndk",
        "libFraunhoferAAC",
        "libbluetooth-types",
        "libbluetooth_core_rs",
        "libbt-audio-hal-interface",
        "libbt-bta",
        "libbt-bta-core",
+2 −0
Original line number Diff line number Diff line
@@ -21,6 +21,7 @@ rust_defaults {
    ],
    rustlibs: [
        "libbluetooth_rs",
        "libbluetooth_core_rs_for_facade",
        "libbt_common",
        "libbt_facade_helpers",
        "libbt_packets",
@@ -45,6 +46,7 @@ rust_defaults {
        "libaudio-a2dp-hw-utils",
        "libbluetooth-dumpsys",
        "libbluetooth-types",
        "libbluetooth_core_rs",
        "libbluetooth_gd", // Gabeldorsche
        "libbt-audio-hal-interface",
        "libbt-bta",
+2 −0
Original line number Diff line number Diff line
@@ -31,6 +31,8 @@ mod utils;
// clippy that is denied on the rust command line so we can't just allow it.
// This is fine for now since bt_shim doesn't export anything
#[allow(unused)]
use bluetooth_core_rs_for_facade::*;
#[allow(unused)]
use bt_shim::*;

fn main() {
Loading