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_base_cmds_uinput_license" 5 // to get the below license kinds: 6 // SPDX-license-identifier-Apache-2.0 7 default_applicable_licenses: ["frameworks_base_cmds_uinput_license"], 8} 9 10cc_library_shared { 11 name: "libuinputcommand_jni", 12 13 srcs: [ 14 "com_android_commands_uinput_Device.cpp", 15 ":uinputcommand_aidl", 16 ], 17 18 shared_libs: [ 19 "libandroid", 20 "libandroid_runtime_lazy", 21 "libbase", 22 "libbinder", 23 "liblog", 24 "libinput", 25 "libnativehelper", 26 ], 27 28 cflags: [ 29 "-Wall", 30 "-Wextra", 31 "-Werror", 32 ], 33} 34