summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJanito Vaqueiro Ferreira Filho <janito@mullvad.net>2020-02-21 20:17:48 +0000
committerJanito Vaqueiro Ferreira Filho <janito@mullvad.net>2020-02-24 12:45:13 +0000
commit57e13fa5107d6a6392c09ba0bedeecf786206b9c (patch)
treeffb55ef18e6355f9aa6eb5e5a2fee48203ecc6b3
parent977a967a28836a363cf284937fe7d69fa392b0f1 (diff)
downloadmullvadvpn-57e13fa5107d6a6392c09ba0bedeecf786206b9c.tar.xz
mullvadvpn-57e13fa5107d6a6392c09ba0bedeecf786206b9c.zip
Compile out modules not used on Android
-rw-r--r--mullvad-daemon/src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/mullvad-daemon/src/lib.rs b/mullvad-daemon/src/lib.rs
index d116e83ea6..ffce1b4187 100644
--- a/mullvad-daemon/src/lib.rs
+++ b/mullvad-daemon/src/lib.rs
@@ -7,8 +7,10 @@ extern crate serde;
mod account_history;
mod geoip;
pub mod logging;
+#[cfg(not(target_os = "android"))]
pub mod management_interface;
mod relays;
+#[cfg(not(target_os = "android"))]
pub mod rpc_uniqueness_check;
mod settings;
pub mod version;