xref: /aosp_15_r20/external/crosvm/cuttlefish/Android.bp (revision bb4ee6a4ae7042d18b07a98463b9c8b875e44b39)
1// wrapper script to run crosvm for cuttlefish
2package {
3    // See: http://go/android-license-faq
4    // A large-scale-change added 'default_applicable_licenses' to import
5    // all of the 'license_kinds' from "external_crosvm_license"
6    // to get the below license kinds:
7    //   SPDX-license-identifier-BSD
8    default_applicable_licenses: ["external_crosvm_license"],
9}
10
11sh_binary_host {
12    name: "common_crosvm",
13    filename: "crosvm",
14    target: {
15        linux_glibc: {
16            src: "crosvm",
17        },
18        linux_musl: {
19            src: "crosvm_musl",
20        },
21        darwin: {
22            src: "crosvm",
23        },
24        linux_bionic: {
25            src: "crosvm_bionic",
26        },
27    },
28}
29