blob: 784c64813d7274e60b8268ddfe164fffcc4f6e68 [file] [log] [blame]
Seungjae Yoo529d53c2024-05-14 14:36:18 +09001package {
2 default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
5rust_binary {
6 name: "vmnic",
7 crate_name: "vmnic",
8 defaults: ["avf_build_flags_rust"],
9 edition: "2021",
10 srcs: ["src/main.rs"],
11 prefer_rlib: true,
12 rustlibs: [
13 "android.system.virtualizationservice_internal-rust",
14 "libandroid_logger",
15 "libanyhow",
16 "libbinder_rs",
17 "liblog_rust",
18 ],
19 apex_available: ["com.android.virt"],
Seungjae Yoo529d53c2024-05-14 14:36:18 +090020}