fix(android): remove dependency to libusb (#10161)

This commit is contained in:
Niklas Adolfsson
2019-01-10 13:13:15 +01:00
committed by Afri Schoedon
parent 38af7f35fc
commit eea5f6f232
4 changed files with 8 additions and 8 deletions

View File

@@ -115,10 +115,10 @@ extern crate kvdb_rocksdb;
#[cfg(any(test, feature = "blooms-db"))]
extern crate blooms_db;
#[cfg(any(target_os = "linux", target_os = "macos", target_os = "windows", target_os = "android"))]
#[cfg(any(target_os = "linux", target_os = "macos", target_os = "windows"))]
extern crate hardware_wallet;
#[cfg(not(any(target_os = "linux", target_os = "macos", target_os = "windows", target_os = "android")))]
#[cfg(not(any(target_os = "linux", target_os = "macos", target_os = "windows")))]
extern crate fake_hardware_wallet as hardware_wallet;
#[macro_use]