blob: 4bb972719a0147e2c5f9227b3ae3f5e45ffe01f1 [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: [
11 "android.system.virtmanager-rust",
12 "libanyhow",
Andrew Walbranea9fa482021-03-04 16:11:12 +000013 "libenv_logger",
Andrew Walbrana89fc132021-03-17 17:08:36 +000014 "liblibc",
Andrew Walbranea9fa482021-03-04 16:11:12 +000015 "liblog_rust",
David Brazdil20412d92021-03-18 10:53:06 +000016 "libstructopt",
Andrew Walbranea9fa482021-03-04 16:11:12 +000017 ],
18 apex_available: [
19 "com.android.virt",
20 ],
21}