blob: 60f7ca4dbcd0c6a5456ee1a0ace740e588bf7fb8 [file]
use std::path::PathBuf;
use crate::core::builder::Builder;
use crate::core::config::TargetSelection;
pub(crate) struct Android {
pub(crate) adb_path: &'static str,
pub(crate) adb_test_dir: &'static str,
pub(crate) android_cross_path: PathBuf,
}
pub(crate) fn discover_android(builder: &Builder<'_>, target: TargetSelection) -> Option<Android> {
if !target.contains("android") {
return None;
}
let adb_path = "adb";
// See <https://github.com/rust-lang/rust/pull/102755>.
let adb_test_dir = "/data/local/tmp/work";
let android_cross_path = if !builder.config.dry_run() {
builder.cc(target).parent().unwrap().parent().unwrap().to_owned()
} else {
PathBuf::new()
};
Some(Android { adb_path, adb_test_dir, android_cross_path })
}