aboutsummaryrefslogtreecommitdiffstats
path: root/components/bluetooth/bluetooth.rs
Commit message (Collapse)AuthorAgeFilesLines
* clippy: fix warnings in components/bluetooth (#31566)eri2024-03-071-16/+9
|
* fix conditional logic that enables native bluetooth (#31073)Mukilan Thiyagarajan2024-01-121-78/+78
| | | | | | | | | | | | PR #30974 integrated `servo/devices` repo into servo codebase. `servo/devices` exposed the `bluetooth` feature to conditionally compile native bluetooth support for the target platform. In servo, this feature is indirectly enabled via the `native-bluetooth` feature exposed by `components/bluetooth`. When `servo/devices` was integrated to servo, the conditional code was not updated to use the `native-bluetooth` feature directly. Signed-off-by: Mukilan Thiyagarajan <mukilan@igalia.com>
* Integrate the `devices` respository (#30974)Martin Robinson2024-01-091-0/+753
Despite the name of this dependency, it only handles bluetooth. Because it's a separate repository. Integrating it, allows changes here to be tested more consistently. In addition, it's likely that new bluetooth libraries will allow removing the majority of the platform-specific code in this directory. This is based on the version of this dependency from: https://github.com/servo/devices/pull/34