1package { 2 default_applicable_licenses: ["hardware_nxp_uwb_license"], 3} 4 5// Added automatically by a large-scale-change 6// See: http://go/android-license-faq 7license { 8 name: "hardware_nxp_uwb_license", 9 visibility: [":__subpackages__"], 10 license_kinds: [ 11 "SPDX-license-identifier-Apache-2.0", 12 ], 13 // large-scale-change unable to identify any license_text files 14} 15 16cc_library_shared { 17 name: "uwb_uci.helios", 18 defaults: [ 19 "hidl_defaults", 20 ], 21 proprietary: true, 22 srcs: [ 23 "halimpl/fwd/sr1xx/*.cc", 24 "halimpl/inc/common/*.cc", 25 "halimpl/hal/*.cc", 26 "halimpl/log/*.cc", 27 "halimpl/tml/*.cc", 28 "halimpl/utils/*.cc", 29 ], 30 shared_libs: [ 31 "android.hardware.uwb-V1-ndk", 32 "libcutils", 33 "liblog", 34 "libhardware", 35 "libbase", 36 "libchrome", 37 "libutils", 38 "libdl", 39 "libhidlbase" 40 ], 41 local_include_dirs: [ 42 "halimpl/fwd/sr1xx", 43 "halimpl/inc", 44 "halimpl/inc/common", 45 "halimpl/hal", 46 "halimpl/log", 47 "halimpl/tml", 48 "halimpl/utils", 49 "extns/inc", 50 ], 51 52 cflags: [ 53 "-DGENERIC", 54 "-DSOC_DEFAULT", 55 "-DBUILDCFG=1", 56 "-Wno-deprecated-register", 57 "-Wno-unused-parameter", 58 "-Wno-missing-field-initializers", 59 ], 60} 61