blob: 734f2d351376128b660166affae2e13b126ac27f [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 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",
Andrew Walbran3a5a9212021-05-04 17:09:08 +000016 "libserde_json",
17 "libserde",
David Brazdil20412d92021-03-18 10:53:06 +000018 "libstructopt",
Jooyung Hanfc732f52021-06-26 02:54:20 +090019 "libvmconfig",
Andrew Walbranea9fa482021-03-04 16:11:12 +000020 ],
21 apex_available: [
22 "com.android.virt",
23 ],
24}