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