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 "hardware_qcom_sm7250_display_license" 5 // to get the below license kinds: 6 // SPDX-license-identifier-Apache-2.0 7 // SPDX-license-identifier-BSD 8 // legacy_not_a_contribution 9 default_applicable_licenses: ["hardware_qcom_sm7250_display_license"], 10} 11 12cc_library_shared { 13 name: "libqservice", 14 vendor: true, 15 defaults: [ 16 "display_defaults", 17 "display_go_defaults", 18 ], 19 shared_libs: ["libbinder"], 20 cflags: [ 21 "-DLOG_TAG=\"qdqservice\"", 22 "-Wno-sign-conversion", 23 ], 24 srcs: [ 25 "QService.cpp", 26 "IQService.cpp", 27 "IQClient.cpp", 28 "IQHDMIClient.cpp", 29 ], 30 sanitize: { 31 misc_undefined: [ 32 "signed-integer-overflow", 33 "unsigned-integer-overflow", 34 ], 35 } 36} 37