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

Commit a52d7daa authored by Chris Manton's avatar Chris Manton
Browse files

gd: Add rust flags gd_link_policy

Bug: 175344733
Test: cert
Tag: #refactor

Change-Id: I4c94a40ed18069cae9433ca447f07e2a40874323
parent dcac9fdd
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -85,13 +85,15 @@ init_flags!(
        gd_controller,
        gatt_robust_caching,
        btaa_hci,
        gd_rust
        gd_rust,
        gd_link_policy
    },
    dependencies: {
        gd_core => gd_security,
        gd_security => gd_acl,
        gd_acl => gd_controller,
        gd_controller => gd_hci
        gd_controller => gd_hci,
        gd_link_policy => gd_acl
    }
);

+1 −0
Original line number Diff line number Diff line
@@ -15,6 +15,7 @@ mod ffi {
        fn gatt_robust_caching_is_enabled() -> bool;
        fn btaa_hci_is_enabled() -> bool;
        fn gd_rust_is_enabled() -> bool;
        fn gd_link_policy_is_enabled() -> bool;
    }
}