1// This file is generated by cargo_embargo. 2// Do not modify this file as changes will be overridden on upgrade. 3 4package { 5 // See: http://go/android-license-faq 6 // A large-scale-change added 'default_applicable_licenses' to import 7 // all of the 'license_kinds' from "external_crosvm_license" 8 // to get the below license kinds: 9 // SPDX-license-identifier-BSD 10 default_applicable_licenses: ["external_crosvm_license"], 11} 12 13rust_library { 14 name: "libvhost", 15 defaults: ["crosvm_inner_defaults"], 16 host_supported: true, 17 crate_name: "vhost", 18 cargo_env_compat: true, 19 cargo_pkg_version: "0.1.0", 20 srcs: ["src/lib.rs"], 21 edition: "2021", 22 rustlibs: [ 23 "libbase_rust", 24 "liblibc", 25 "libnet_util", 26 "libstatic_assertions", 27 "libthiserror", 28 "libvirtio_sys", 29 "libvm_memory", 30 ], 31 proc_macros: ["libremain"], 32} 33 34rust_test { 35 name: "vhost_test_tests_unix", 36 defaults: ["crosvm_inner_defaults"], 37 host_supported: true, 38 crate_name: "unix", 39 cargo_env_compat: true, 40 cargo_pkg_version: "0.1.0", 41 srcs: ["tests/unix.rs"], 42 test_suites: ["general-tests"], 43 auto_gen_config: true, 44 test_options: { 45 unit_test: false, 46 }, 47 edition: "2021", 48 rustlibs: [ 49 "libbase_rust", 50 "liblibc", 51 "libnet_util", 52 "libstatic_assertions", 53 "libthiserror", 54 "libvhost", 55 "libvirtio_sys", 56 "libvm_memory", 57 ], 58 proc_macros: ["libremain"], 59} 60