blob: c07beb23b544837e89367ba7050e2654bdc0c0cd [file] [log] [blame]
Bob Badour9dcd9472021-03-10 22:56:24 -08001package {
2 default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
Andrew Walbranea9fa482021-03-04 16:11:12 +00005rust_binary {
6 name: "vm",
7 crate_name: "vm",
8 srcs: ["src/main.rs"],
9 edition: "2018",
10 rustlibs: [
Andrew Walbranf6bf6862021-05-21 12:41:13 +000011 "android.system.virtualizationservice-rust",
Andrew Walbranea9fa482021-03-04 16:11:12 +000012 "libanyhow",
Andrew Walbran0c4d3df2021-05-27 14:00:42 +000013 "libcompositediskconfig",
Andrew Walbranea9fa482021-03-04 16:11:12 +000014 "libenv_logger",
Andrew Walbrana89fc132021-03-17 17:08:36 +000015 "liblibc",
Andrew Walbranea9fa482021-03-04 16:11:12 +000016 "liblog_rust",
Andrew Walbran3a5a9212021-05-04 17:09:08 +000017 "libserde_json",
18 "libserde",
David Brazdil20412d92021-03-18 10:53:06 +000019 "libstructopt",
Andrew Walbranea9fa482021-03-04 16:11:12 +000020 ],
21 apex_available: [
22 "com.android.virt",
23 ],
24}