2021-05-27 14:00:42 +00:00
|
|
|
package {
|
|
|
|
default_applicable_licenses: ["Android-Apache-2.0"],
|
|
|
|
}
|
|
|
|
|
|
|
|
rust_library {
|
2021-06-25 17:54:20 +00:00
|
|
|
name: "libvmconfig",
|
|
|
|
crate_name: "vmconfig",
|
2021-05-27 14:00:42 +00:00
|
|
|
srcs: ["src/lib.rs"],
|
|
|
|
edition: "2018",
|
|
|
|
rustlibs: [
|
2021-06-25 17:54:20 +00:00
|
|
|
"android.system.virtualizationservice-rust",
|
|
|
|
"libanyhow",
|
2022-02-08 06:07:23 +00:00
|
|
|
"libsemver",
|
2021-05-27 14:00:42 +00:00
|
|
|
"libserde",
|
2022-02-08 06:07:23 +00:00
|
|
|
"libserde_json",
|
2021-05-27 14:00:42 +00:00
|
|
|
],
|
|
|
|
apex_available: [
|
|
|
|
"com.android.virt",
|
|
|
|
],
|
|
|
|
}
|