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 darwin: { 19 src: "crosvm", 20 }, 21 linux_bionic: { 22 src: "crosvm_bionic", 23 }, 24 }, 25} 26