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 "frameworks_native_license" 5 // to get the below license kinds: 6 // SPDX-license-identifier-Apache-2.0 7 default_applicable_licenses: ["frameworks_native_license"], 8} 9 10cc_library_shared { 11 name: "libstatshidl", 12 srcs: [ 13 "StatsAidl.cpp", 14 "StatsHal.cpp", 15 ], 16 cflags: ["-Wall", "-Werror"], 17 shared_libs: [ 18 "android.frameworks.stats@1.0", 19 "android.frameworks.stats-V1-ndk_platform", 20 "libbinder_ndk", 21 "libhidlbase", 22 "liblog", 23 "libstatslog", 24 "libstatssocket", 25 "libutils", 26 ], 27 export_include_dirs: [ 28 "include/", 29 ], 30 export_shared_lib_headers: [ 31 "android.frameworks.stats@1.0", 32 "android.frameworks.stats-V1-ndk_platform", 33 ], 34 local_include_dirs: [ 35 "include/stats", 36 ], 37 vintf_fragments: ["android.frameworks.stats@1.0-service.xml"] 38} 39