blob: 88b0c9a05b6c5ab00484336f8bbcd8021f0a04fd [file] [log] [blame]
Andrew Walbrand0ef4002022-05-16 16:14:10 +00001package {
2 default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
5rust_library {
6 name: "libvmclient",
7 crate_name: "vmclient",
8 srcs: ["src/lib.rs"],
9 edition: "2021",
10 rustlibs: [
Alan Stokes2bead0d2022-09-05 16:58:34 +010011 "android.system.virtualizationcommon-rust",
Andrew Walbrand0ef4002022-05-16 16:14:10 +000012 "android.system.virtualizationservice-rust",
Andrew Walbran1072cc02022-05-23 14:47:58 +000013 "libbinder_rs",
Andrew Walbrand0ef4002022-05-16 16:14:10 +000014 "liblog_rust",
Andrew Walbran7eb5ca42022-08-08 15:33:34 +000015 "librpcbinder_rs",
Andrew Walbrand0ef4002022-05-16 16:14:10 +000016 "libthiserror",
17 ],
Andrew Walbran1072cc02022-05-23 14:47:58 +000018 shared_libs: [
19 "libbinder_rpc_unstable",
20 ],
Andrew Walbrand0ef4002022-05-16 16:14:10 +000021 apex_available: [
22 "com.android.compos",
23 "com.android.virt",
24 ],
25}