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

Commit 99a0faca authored by David Duarte's avatar David Duarte
Browse files

Make dependencies explicit.

Partial cherry-pick of https://r.android.com/2327575
to remove some conflicts

Merged-In: I26b7311307a5415d5d9788692ae6b6d3f917c1b0
Change-Id: Iaef019083363ab7815e3f15b52b95b7f549c7635
parent 4c2b0867
Loading
Loading
Loading
Loading
+2 −7
Original line number Diff line number Diff line
//! Starts the facade services that allow us to test the Bluetooth stack

#[macro_use]
extern crate clap;
use clap::{App, Arg};

#[macro_use]
extern crate lazy_static;

use bluetooth_with_facades::RootFacadeService;
use clap::{value_t, App, Arg};
use futures::channel::mpsc;
use futures::executor::block_on;
use futures::stream::StreamExt;
use grpcio::*;
use lazy_static::lazy_static;
use log::debug;
use nix::sys::signal;
use std::sync::{Arc, Mutex};
+2 −7
Original line number Diff line number Diff line
//! Starts the facade services that allow us to test the Bluetooth stack

#[macro_use]
extern crate clap;
use clap::{App, Arg};

#[macro_use]
extern crate lazy_static;

use bt_topshim::btif;

use clap::{value_t, App, Arg};
use futures::channel::mpsc;
use futures::executor::block_on;
use futures::stream::StreamExt;
use grpcio::*;
use lazy_static::lazy_static;
use log::debug;
use nix::sys::signal;
use std::sync::{Arc, Mutex};