1// TODO(b/110363419): remove or make failures harder 2// Deprecated: most minijail users should either use libavservices_minijail 3// or reinstitute this (w/ fatal checks). 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 "system_libhidl_license" 8 // to get the below license kinds: 9 // SPDX-license-identifier-Apache-2.0 10 default_applicable_licenses: ["system_libhidl_license"], 11} 12 13cc_library_shared { 14 name: "libhwminijail", 15 defaults: ["hidl_defaults"], 16 vendor: true, 17 export_include_dirs: ["include"], 18 19 srcs: ["HardwareMinijail.cpp"], 20 21 shared_libs: [ 22 "libbase", 23 "libminijail", 24 ], 25 visibility: [ 26 ":__subpackages__", 27 "//hardware/interfaces/configstore/1.1/default", 28 "//vendor:__subpackages__", 29 ], 30} 31