2021-03-11 06:56:24 +00:00
|
|
|
package {
|
|
|
|
default_applicable_licenses: ["Android-Apache-2.0"],
|
|
|
|
}
|
|
|
|
|
2021-03-04 16:11:12 +00:00
|
|
|
rust_binary {
|
|
|
|
name: "vm",
|
|
|
|
crate_name: "vm",
|
|
|
|
srcs: ["src/main.rs"],
|
|
|
|
edition: "2018",
|
|
|
|
rustlibs: [
|
|
|
|
"android.system.virtmanager-rust",
|
|
|
|
"libanyhow",
|
|
|
|
"libenv_logger",
|
2021-03-17 17:08:36 +00:00
|
|
|
"liblibc",
|
2021-03-04 16:11:12 +00:00
|
|
|
"liblog_rust",
|
2021-03-18 10:53:06 +00:00
|
|
|
"libstructopt",
|
2021-03-04 16:11:12 +00:00
|
|
|
],
|
|
|
|
apex_available: [
|
|
|
|
"com.android.virt",
|
|
|
|
],
|
|
|
|
}
|