• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package {
2    // See: http://go/android-license-faq
3    // A large-scale-change added 'default_applicable_licenses' to import
4    // all of the 'license_kinds' from "external_crosvm_license"
5    // to get the below license kinds:
6    //   SPDX-license-identifier-BSD
7    default_applicable_licenses: ["external_crosvm_license"],
8}
9
10rust_binary {
11    name: "kumquat",
12    crate_name: "kumquat",
13    host_supported: true,
14    vendor_available: true,
15    prefer_rlib: true,
16    cargo_env_compat: true,
17    crate_root: "src/main.rs",
18    cargo_pkg_version: "0.1.3",
19    edition: "2021",
20    cfgs: [
21        "gfxstream_unstable",
22    ],
23    features: [
24        "gfxstream",
25    ],
26    rustlibs: [
27        "librutabaga_gfx_gfxstream",
28        "liblibc",
29        "liblog_rust",
30        "libnix",
31        "libthiserror",
32        "libclap",
33    ],
34    shared_libs: [
35        "libgfxstream_backend",
36    ],
37    target: {
38        host: {
39            compile_multilib: "64",
40        },
41        android: {
42            compile_multilib: "64",
43        },
44    },
45}
46